mirror of
https://github.com/Myxelium/Bridge-Multi.git
synced 2026-04-09 05:09:39 +00:00
- Add Chart Preview - Add Drum Type dropdown when the "drums" instrument is selected - Add Min/Max Year to advanced search - Add Track Hash to advanced search - Add "Download Video Backgrounds" setting - Updated and improved detected chart issues
113 lines
3.2 KiB
JSON
113 lines
3.2 KiB
JSON
{
|
|
"root": true,
|
|
"ignorePatterns": ["*.config"],
|
|
"overrides": [
|
|
{
|
|
"files": ["*.ts"],
|
|
"parserOptions": {
|
|
"project": ["tsconfig.json"],
|
|
"sourceType": "module",
|
|
"createDefaultProgram": true
|
|
},
|
|
"plugins": [
|
|
"prefer-arrow",
|
|
"import"
|
|
],
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/recommended",
|
|
"plugin:@angular-eslint/recommended"
|
|
],
|
|
"rules": {
|
|
"import/extensions": ["error", "ignorePackages"],
|
|
"semi": "off",
|
|
"@typescript-eslint/semi": ["error", "never"],
|
|
"@typescript-eslint/consistent-type-definitions": "error",
|
|
"@typescript-eslint/dot-notation": "off",
|
|
"@typescript-eslint/explicit-member-accessibility": [
|
|
"off",
|
|
{
|
|
"accessibility": "explicit"
|
|
}
|
|
],
|
|
"@typescript-eslint/no-use-before-define": ["error", { "typedefs": false, "functions": false, "classes": false }],
|
|
"@typescript-eslint/no-shadow": ["off"],
|
|
"@typescript-eslint/member-ordering": ["error", { "default": ["field", "public-constructor", "constructor", "method"] }],
|
|
"@typescript-eslint/member-delimiter-style": ["error", { "multiline": { "delimiter": "none", "requireLast": true } }],
|
|
"@typescript-eslint/no-non-null-assertion": "off",
|
|
"@typescript-eslint/no-empty-function": ["error", { "allow": ["private-constructors"] }],
|
|
"brace-style": ["error", "1tbs", { "allowSingleLine": true }],
|
|
"id-blacklist": "off",
|
|
"id-match": "off",
|
|
"max-len": [
|
|
"error",
|
|
{
|
|
"ignorePattern": "^import |^export \\{(.*?)\\}|^\\s*@inject\\(",
|
|
"tabWidth": 2,
|
|
"code": 150
|
|
}
|
|
],
|
|
"@typescript-eslint/naming-convention": [
|
|
"error",
|
|
{
|
|
"selector": "default",
|
|
"format": [
|
|
"camelCase",
|
|
"PascalCase",
|
|
"UPPER_CASE"
|
|
],
|
|
"leadingUnderscore": "allow"
|
|
},
|
|
{
|
|
"selector": ["property", "parameter"],
|
|
"format": null,
|
|
"filter": {
|
|
"regex": "(filter_single)|(_.*)|(@.*)|(<.*)|(\\+=)",
|
|
"match": true
|
|
}
|
|
}
|
|
],
|
|
"no-underscore-dangle": "off",
|
|
"@angular-eslint/no-host-metadata-property": "error",
|
|
"@angular-eslint/no-inputs-metadata-property": "error",
|
|
"@angular-eslint/no-outputs-metadata-property": "error",
|
|
"@angular-eslint/use-lifecycle-interface": "error",
|
|
"arrow-parens": ["error", "as-needed"],
|
|
"comma-dangle": ["error", "always-multiline"],
|
|
"prefer-arrow/prefer-arrow-functions": ["error", { "allowStandaloneDeclarations": true }],
|
|
"no-fallthrough": ["error", { "commentPattern": "break[\\s\\w]*omitted" }]
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.html"],
|
|
"extends": ["plugin:@angular-eslint/template/recommended"],
|
|
"rules": {
|
|
"max-len": ["error", 150]
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.html"],
|
|
"plugins": ["prettier"],
|
|
"extends": ["plugin:prettier/recommended"],
|
|
"rules": {
|
|
"prettier/prettier": ["error", {
|
|
"parser": "angular",
|
|
"endOfLine": "auto",
|
|
"printWidth": 150,
|
|
"useTabs": true,
|
|
"singleQuote": true,
|
|
"htmlWhitespaceSensitivity": "css",
|
|
"bracketSameLine": true
|
|
}]
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.test.ts", "*.spec.ts"],
|
|
"rules": {
|
|
"no-unused-expressions": "off",
|
|
"@typescript-eslint/no-unused-expressions": ["off"]
|
|
}
|
|
}
|
|
]
|
|
}
|