-
Notifications
You must be signed in to change notification settings - Fork 4
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 #10 from GEWIS/feature/bac-pages
Implement the BAC pages for managing products and for managing users (including some POS pages already as well)
- Loading branch information
Showing
45 changed files
with
2,965 additions
and
4,816 deletions.
There are no files selected for viewing
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,15 +1,39 @@ | ||
/* eslint-env node */ | ||
require('@rushstack/eslint-patch/modern-module-resolution') | ||
require('@rushstack/eslint-patch/modern-module-resolution'); | ||
|
||
module.exports = { | ||
root: true, | ||
plugins: ['import'], | ||
'extends': [ | ||
'plugin:vue/vue3-essential', | ||
'eslint:recommended', | ||
'@vue/eslint-config-typescript', | ||
'@vue/eslint-config-prettier/skip-formatting' | ||
'@vue/eslint-config-prettier/skip-formatting', | ||
'plugin:@intlify/vue-i18n/recommended' | ||
], | ||
|
||
ignorePatterns: ["/src/components/icons/*.vue"], | ||
rules: { | ||
'max-len': ['warn', { "code": 120 } ], | ||
'semi': ['error', 'always'], | ||
'object-curly-spacing': ['error', 'always'], | ||
"vue/component-api-style": ["error", | ||
["script-setup", "composition"] | ||
], | ||
"vue/block-lang": ["error", | ||
{ | ||
"script": { | ||
"lang": "ts" | ||
} | ||
} | ||
], | ||
}, | ||
parserOptions: { | ||
ecmaVersion: 'latest' | ||
ecmaVersion: 'latest', | ||
}, | ||
} | ||
settings: { | ||
"vue-i18n": { | ||
"localeDir": "/src/locales", | ||
} | ||
} | ||
}; |
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,8 +1,8 @@ | ||
{ | ||
"$schema": "https://json.schemastore.org/prettierrc", | ||
"semi": false, | ||
"semi": true, | ||
"tabWidth": 2, | ||
"singleQuote": true, | ||
"printWidth": 100, | ||
"trailingComma": "none" | ||
} | ||
} |
Oops, something went wrong.