-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from isuke/major-update
Major update
- Loading branch information
Showing
127 changed files
with
38,567 additions
and
26,339 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,39 +1,71 @@ | ||
module.exports = { | ||
"env": { | ||
"es6": true, | ||
"amd": true, | ||
"node": true, | ||
"browser": true | ||
env: { | ||
node: true, | ||
}, | ||
"plugins": ["prettier"], | ||
"extends": [ | ||
extends: [ | ||
"@vue/typescript/recommended", | ||
"eslint:recommended", | ||
"plugin:prettier/recommended" | ||
"plugin:vue/vue3-essential", | ||
"plugin:import/recommended", | ||
"plugin:import/errors", | ||
"plugin:import/warnings", | ||
], | ||
"parserOptions": { | ||
"ecmaVersion": 2017, | ||
"sourceType": "module" | ||
parser: "vue-eslint-parser", | ||
parserOptions: { | ||
ecmaVersion: "latest", | ||
tsconfigRootDir: ".", | ||
project: ["./tsconfig.json"], | ||
sourceType: "module", | ||
}, | ||
"rules": { | ||
"no-console": process.env.NODE_ENV === "production" ? "error" : "off", | ||
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off", | ||
plugins: ["@typescript-eslint", "import"], | ||
settings: { | ||
"import/resolver": { | ||
typescript: {}, | ||
}, | ||
"import/extensions": [".ts"], | ||
}, | ||
rules: { | ||
"no-console": [process.env.NODE_ENV === "production" ? "error" : "warn", { allow: ["info", "warn", "error"] }], | ||
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "warn", | ||
"no-unused-vars": [ | ||
process.env.NODE_ENV === "production" ? "error" : "warn", | ||
{ | ||
argsIgnorePattern: "^_", | ||
varsIgnorePattern: "^_", | ||
caughtErrorsIgnorePattern: "^_", | ||
destructuredArrayIgnorePattern: "^_", | ||
}, | ||
], | ||
"@typescript-eslint/no-unused-vars": [ | ||
process.env.NODE_ENV === "production" ? "error" : "warn", | ||
{ | ||
argsIgnorePattern: "^_", | ||
varsIgnorePattern: "^_", | ||
caughtErrorsIgnorePattern: "^_", | ||
destructuredArrayIgnorePattern: "^_", | ||
}, | ||
], | ||
"import/no-unresolved": "error", | ||
"import/extensions": [ | ||
"error", | ||
{ | ||
"varsIgnorePattern": "^_", | ||
"argsIgnorePattern": "^_", | ||
"caughtErrorsIgnorePattern": "^_" | ||
} | ||
ignorePackages: true, | ||
pattern: { | ||
js: "never", | ||
ts: "never", | ||
json: "always", | ||
}, | ||
}, | ||
], | ||
"prettier/prettier": [ | ||
"import/order": [ | ||
"error", | ||
{ | ||
"semi": false, | ||
"singleQuote": true, | ||
"trailingComma": "es5", | ||
"printWidth": 160, | ||
"arrowParens": "always" | ||
} | ||
] | ||
} | ||
"groups": ["builtin", "external", "internal", "parent", "sibling", "index", "object", "type"], | ||
"pathGroupsExcludedImportTypes": ["builtin"], | ||
"alphabetize": { order: "asc" }, | ||
"newlines-between": "always", | ||
}, | ||
], | ||
"vue/multi-word-component-names": "off", | ||
}, | ||
} |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Test and Lint | ||
|
||
on: [push] | ||
|
||
jobs: | ||
# test: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v3 | ||
# - name: Use Node.js | ||
# uses: actions/setup-node@v3 | ||
# with: | ||
# node-version: 20.x | ||
# cache: 'npm' | ||
# - run: npm install | ||
# - run: npm run build | ||
# - run: npm run test | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20.x | ||
cache: 'npm' | ||
- run: npm install | ||
- run: npm run lint |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"siteId": "42474e52-f9b2-407d-a357-cbdb32b10c42" | ||
} | ||
"siteId": "42474e52-f9b2-407d-a357-cbdb32b10c42" | ||
} |
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 |
---|---|---|
@@ -1 +1 @@ | ||
14.17.3 | ||
20.5.0 |
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,11 @@ | ||
{ | ||
"printWidth": 160, | ||
"tabWidth": 2, | ||
"useTabs": false, | ||
"semi": false, | ||
"singleQuote": false, | ||
"quoteProps": "consistent", | ||
"trailingComma": "all", | ||
"bracketSpacing": true, | ||
"arrowParens": "always" | ||
} |
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,22 @@ | ||
{ | ||
"extends": ["stylelint-config-standard", "stylelint-config-standard-scss", "stylelint-config-recommended-vue/scss", "stylelint-config-recess-order"], | ||
"ignoreFiles": ["**/node_modules/**"], | ||
"plugins": ["stylelint-order"], | ||
"rules": { | ||
"color-hex-length": "long", | ||
"comment-whitespace-inside": null, | ||
"no-descending-specificity": null, | ||
"declaration-block-no-duplicate-properties": true, | ||
"declaration-property-value-no-unknown": [ | ||
true, | ||
{ | ||
"ignoreProperties": { | ||
"/.+/": "/\\$.+/" | ||
} | ||
} | ||
], | ||
"selector-class-pattern": null, | ||
"scss/comment-no-empty": null, | ||
"scss/dollar-variable-empty-line-before": null | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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,29 @@ | ||
# filter-of-kalandra [![Netlify Status](https://api.netlify.com/api/v1/badges/42474e52-f9b2-407d-a357-cbdb32b10c42/deploy-status)](https://app.netlify.com/sites/filter-of-kalandra/deploys) | ||
|
||
**filter-of-kalandra** is next level *'Path of Exile'* filter generator. | ||
|
||
## Development | ||
|
||
### setup | ||
|
||
```sh | ||
$ npm install | ||
``` | ||
|
||
### Compiles and hot-reloads for development | ||
|
||
```sh | ||
npm run serve | ||
``` | ||
|
||
### Compiles and minifies for production | ||
|
||
```sh | ||
npm run build | ||
``` | ||
|
||
### Lints and fixes files | ||
|
||
```sh | ||
npm run lint | ||
``` |
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module.exports = { | ||
presets: ["@vue/app"] | ||
}; | ||
presets: ["@vue/cli-plugin-babel/preset"], | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.