schat2-clive/.eslintrc

21 lines
481 B
Plaintext
Raw Normal View History

2021-11-01 02:45:04 +00:00
{
"root": true,
"extends": "airbnb-base",
"parser": "@babel/eslint-parser",
"parserOptions": {
2021-11-01 15:06:48 +00:00
"sourceType": "script",
"requireConfigFile": false
2021-11-01 02:45:04 +00:00
},
"env": {
"es2020": true
},
"rules": {
"strict": 0,
"no-unused-vars": ["error", {"argsIgnorePattern": "^_"}],
"no-console": 0,
2021-11-01 15:06:48 +00:00
"indent": ["error", "tab"],
"no-tabs": 0,
2021-11-01 02:45:04 +00:00
"max-len": [2, {"code": 400, "tabWidth": 4, "ignoreUrls": true}]
}
}