-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
feat!: upgrade to Aurelia 2, closes #709
- Loading branch information
1 parent
caa54d9
commit ab8e29d
Showing
170 changed files
with
5,886 additions
and
11,122 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
{ | ||
"root": true, | ||
"parser": "@typescript-eslint/parser", | ||
"parserOptions": { | ||
"sourceType": "module" | ||
}, | ||
"env": { | ||
"browser": true, | ||
"node": true | ||
}, | ||
"settings": { | ||
"node": { | ||
"tryExtensions": [".js", ".json", ".node", ".ts", ".d.ts"], | ||
"resolvePaths": ["node_modules/@types"] | ||
} | ||
}, | ||
"extends": [ | ||
"plugin:@typescript-eslint/eslint-recommended", | ||
"plugin:@typescript-eslint/recommended" | ||
], | ||
"plugins": ["@typescript-eslint", "node"], | ||
"ignorePatterns": ["*.spec.ts"], | ||
"rules": { | ||
"class-methods-use-this": "off", | ||
"consistent-return": "off", | ||
"curly": ["error", "all"], | ||
"default-param-last": "off", | ||
"dot-notation": "off", | ||
"import/extensions": "off", | ||
"import/no-extraneous-dependencies": "off", | ||
"import/no-unresolved": "off", | ||
"import/order": "off", | ||
"node/no-missing-require": "off", | ||
"no-param-reassign": "off", | ||
"no-restricted-syntax": "off", | ||
"no-underscore-dangle": "off", | ||
"no-use-before-define": [ | ||
"error", | ||
{ | ||
"functions": false, | ||
"classes": false | ||
} | ||
], | ||
"node/no-extraneous-require": "off", | ||
"node/no-unpublished-require": "off", | ||
"node/no-unsupported-features/es-syntax": "off", | ||
"prefer-destructuring": "off", | ||
"prefer-object-spread": "off", | ||
"strict": "off", | ||
"max-len": "off", | ||
"arrow-body-style": "off", | ||
"@typescript-eslint/ban-ts-comment": "off", | ||
"@typescript-eslint/no-empty-function": "off", | ||
"@typescript-eslint/no-explicit-any": "off", | ||
"@typescript-eslint/no-non-null-assertion": "off", | ||
"@typescript-eslint/no-unused-vars": [ | ||
"error", | ||
{ "argsIgnorePattern": "^_", "destructuredArrayIgnorePattern": "^_" } | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ doc | |
src | ||
ISSUE_TEMPLATE.md | ||
index.ejs | ||
index.html | ||
jest.conf.js | ||
npm-debug.log | ||
package-scripts.js | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.