You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
paste/.eslintrc.json

19 lines
424 B
JSON

9 years ago
{
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 8
9 years ago
},
"extends": ["eslint:recommended"],
9 years ago
"rules": {
"indent": ["error", "tab"],
"quotes": ["error", "single", "avoid-escape"],
"linebreak-style": ["error", "unix"],
"semi": ["error", "always"],
"no-trailing-spaces": ["warn"],
"comma-dangle": ["error"],
8 years ago
"no-console": ["warn", { "allow": ["warn", "error"] }]
9 years ago
}
}