Skip to content

Commit

Permalink
Merge pull request #306 from TaloDev/develop
Browse files Browse the repository at this point in the history
Release 0.35.0
  • Loading branch information
tudddorrr committed Jun 25, 2024
2 parents 3fdb219 + 9e003e3 commit 71ed5db
Show file tree
Hide file tree
Showing 27 changed files with 692 additions and 348 deletions.
35 changes: 25 additions & 10 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,37 @@
"es2021": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": true
},
"plugins": [
"@typescript-eslint"
"@typescript-eslint",
"@stylistic"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"indent": ["error", 2, { "SwitchCase": 1, "ignoredNodes": ["PropertyDefinition"] }],
"quotes": ["error", "single"],
"semi": ["error", "never"],
"comma-dangle": ["error", "never"],
"no-trailing-spaces": ["warn"],
"object-curly-spacing": [2, "always"],
"arrow-parens": ["error", "always"],
"keyword-spacing": ["error", { "before": true, "after": true }],
"eol-last": ["warn", "always"]
"@stylistic/indent": ["error", 2, { "SwitchCase": 1, "ignoredNodes": ["PropertyDefinition"] }],
"@stylistic/no-trailing-spaces": ["warn"],
"@stylistic/object-curly-spacing": [2, "always"],
"@stylistic/arrow-parens": ["error", "always"],
"@stylistic/keyword-spacing": ["error", { "before": true, "after": true }],
"@stylistic/eol-last": ["warn", "always"],
"@stylistic/comma-dangle": ["error", "never"],
"@stylistic/semi": ["error", "never"],
"@stylistic/quotes": ["error", "single"],
"@stylistic/member-delimiter-style": ["error", {
"multiline": {
"delimiter": "none",
"requireLast": false
},
"singleline": {
"delimiter": "comma",
"requireLast": false
}
}],
"@typescript-eslint/consistent-type-definitions": ["error", "type"]
}
}
Loading

0 comments on commit 71ed5db

Please sign in to comment.