Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Commit

Permalink
revifit scss
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdmaster committed Nov 28, 2021
1 parent baa6f28 commit 793c88d
Show file tree
Hide file tree
Showing 13 changed files with 1,103 additions and 199 deletions.
47 changes: 46 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,37 @@
module.exports = {
plugins: ['tsdoc', 'simple-import-sort', 'vue', 'nuxt'],
// ATTN: @nuxtjs/eslint-config is removed from package.json because
// it is now redundant with @nuxtjs/eslint-config-typescript
// https://typescript.nuxtjs.org/guide/lint/
plugins: [
'tsdoc',
'simple-import-sort',
'vue',
'nuxt',
'@typescript-eslint',
'import',
],
extends: [
'@nuxtjs/eslint-config-typescript',
'prettier',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:import/typescript',
'plugin:prettier/recommended',
'plugin:nuxt/recommended',
'plugin:vue/recommended',
'plugin:@typescript-eslint/recommended',
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaFeatures: {
jsx: true,
es6: true,
},
ecmaVersion: 2016,
sourceType: 'module',
},
rules: {
'import/no-unresolved': 2,
'vue/max-attributes-per-line': 0 /* off */,
'vue/html-self-closing': [
2 /* error */,
Expand All @@ -31,5 +56,25 @@ module.exports = {
patterns: ['./', '../'],
},
],
'@typescript-eslint/no-explicit-any': 1 /* warn */,
'import/extensions': [
2,
'ignorePackages',
{
js: 'never',
jsx: 'never',
mjs: 'never',
ts: 'never',
tsx: 'never',
},
],
},
settings: {
'import/resolver': {
typescript: {
/* https://www.npmjs.com/package/eslint-import-resolver-typescript */
alwaysTryTypes: true,
},
},
},
}
41 changes: 41 additions & 0 deletions assets/global.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions assets/global.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

245 changes: 245 additions & 0 deletions assets/monitoringItemsTableCommon.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions assets/monitoringItemsTableCommon.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions assets/variables.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions assets/variables.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 793c88d

Please sign in to comment.