Skip to content

Commit

Permalink
updated dependencies, minor cleanup & added linting
Browse files Browse the repository at this point in the history
  • Loading branch information
tada5hi committed Mar 17, 2022
1 parent cd929a5 commit db9bdf8
Show file tree
Hide file tree
Showing 9 changed files with 4,317 additions and 228 deletions.
34 changes: 34 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"extends": [
"@tada5hi/eslint-config-typescript"
],
"parserOptions": {
"project": "./tsconfig.json",
"extraFileExtensions": [".vue"]
},
"rules": {
"class-methods-use-this": "off",

"no-continue": "off",
"no-underscore-dangle": "off",
"no-shadow": "off",

"import/no-cycle": [2, {
"maxDepth": 2
}],
"import/no-extraneous-dependencies": ["error", {
"devDependencies": true,
"optionalDependencies": false,
"peerDependencies": false
}],

"@typescript-eslint/no-this-alias": "off"
},
"ignorePatterns": [
"**/dist/*",
"**/*.d.ts"
],
"globals": {
"NodeJS": true
}
}
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
node-version: [16.x]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

Expand Down
Loading

0 comments on commit db9bdf8

Please sign in to comment.