mirror of
https://codeberg.org/fediverse/fediparty.git
synced 2024-10-31 22:27:21 +00:00
24 lines
459 B
Plaintext
24 lines
459 B
Plaintext
{
|
|
"parserOptions": {
|
|
"ecmaVersion": 6,
|
|
"sourceType": "script",
|
|
"ecmaFeatures": {
|
|
"impliedStrict": true
|
|
}
|
|
},
|
|
"parser": "babel-eslint",
|
|
"env": {
|
|
"browser": true,
|
|
"node": true
|
|
},
|
|
"extends": [
|
|
"eslint:recommended"
|
|
],
|
|
"rules": {
|
|
"linebreak-style": ["error", "unix"],
|
|
"semi": ["error", "always"],
|
|
"camelcase": ["warn", { "properties": "always" }],
|
|
"no-cond-assign": ["error", "except-parens"]
|
|
}
|
|
}
|