1
0
mirror of https://github.com/LibreScore/dl-librescore synced 2024-09-19 18:15:34 +02:00
dl-librescore/.eslintrc

45 lines
1.4 KiB
Plaintext
Raw Normal View History

2019-11-03 20:13:06 +01:00
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
2020-05-18 00:57:28 +02:00
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
2020-05-18 00:57:28 +02:00
"extends": [
"standard",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
2019-11-03 20:13:06 +01:00
"rules": {
2020-05-18 00:57:28 +02:00
"dot-notation": "off",
2020-09-27 17:44:22 +02:00
"camelcase": "off",
2020-05-18 00:57:28 +02:00
"no-useless-constructor": "off",
"@typescript-eslint/no-useless-constructor": "error",
"no-dupe-class-members": "off",
2021-05-21 23:40:52 +02:00
"no-void": "off",
"no-use-before-define": "off",
2020-05-18 00:57:28 +02:00
"@typescript-eslint/no-dupe-class-members": "error",
"@typescript-eslint/no-floating-promises": "warn",
"@typescript-eslint/member-delimiter-style": "warn",
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/prefer-regexp-exec": "off",
2020-09-27 17:44:22 +02:00
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
2020-05-18 00:57:28 +02:00
"no-trailing-spaces": [
2019-11-03 20:13:06 +01:00
"error",
2020-05-18 00:57:28 +02:00
{
"ignoreComments": true
}
2019-11-03 20:13:06 +01:00
],
"comma-dangle": ["warn", "always-multiline"]
2020-05-18 00:57:28 +02:00
},
"parserOptions": {
"project": ["./tsconfig.json"]
2019-11-03 20:13:06 +01:00
}
}