fediparty/themes/starter/.eslintrc

25 lines
499 B
Plaintext
Raw Normal View History

2018-03-12 19:31:14 +00:00
{
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "script",
"ecmaFeatures": {
"impliedStrict": true
2022-11-04 19:49:58 +00:00
},
"requireConfigFile": false
2018-03-12 19:31:14 +00:00
},
2022-11-04 19:49:58 +00:00
"parser": "@babel/eslint-parser",
2018-03-12 19:31:14 +00:00
"env": {
"browser": true,
"node": true
2018-03-12 19:31:14 +00:00
},
"extends": [
"eslint:recommended"
],
"rules": {
"linebreak-style": ["error", "unix"],
"semi": ["error", "always"],
"camelcase": ["warn", { "properties": "always" }],
"no-cond-assign": ["error", "except-parens"]
}
}