Skip to content

Commit

Permalink
Merge pull request #10 from GEWIS/feature/bac-pages
Browse files Browse the repository at this point in the history
Implement the BAC pages for managing products and for managing users (including some POS pages already as well)
  • Loading branch information
CodeNamedRobin authored Sep 27, 2023
2 parents 00a6535 + b00300e commit 5f8db86
Show file tree
Hide file tree
Showing 45 changed files with 2,965 additions and 4,816 deletions.
32 changes: 28 additions & 4 deletions .eslintrc.cjs
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",
}
}
};
4 changes: 2 additions & 2 deletions .prettierrc.json
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"
}
}
Loading

0 comments on commit 5f8db86

Please sign in to comment.