cryptalk/.eslintrc.json

38 lines
715 B
JSON
Raw Permalink Normal View History

2021-11-03 15:35:57 -04:00
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true,
"amd": true
},
"extends": "eslint:recommended",
"parserOptions": {
"sourceType": "module"
},
"rules": {
"indent": [
"error",
"tab"
],
"linebreak-style": 0,
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
],
"eqeqeq": [
"error",
"always"
],
"no-undef": [
"warn"
],
"no-console": [
"warn"
]
}
2017-02-22 17:09:50 -05:00
}