mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-02-02 14:41:16 +00:00
18 lines
317 B
JavaScript
18 lines
317 B
JavaScript
module.exports = {
|
|
env: {
|
|
es6: true,
|
|
node: true
|
|
},
|
|
extends: "eslint:recommended",
|
|
parserOptions: {
|
|
sourceType: "module",
|
|
ecmaVersion: 2017
|
|
},
|
|
rules: {
|
|
indent: ["error", 2],
|
|
"linebreak-style": ["error", "unix"],
|
|
quotes: ["error", "double"],
|
|
semi: ["error", "always"]
|
|
}
|
|
};
|