c7066c2242
* feat: Build with webpack * feat: Vue, tailwind + webpack working * feat(vue): Upgraded to vue3 Now using our ui-components, with section box and camera views support * chore: Minor cleanup of logs * fix: ColorBy must only be grouping in order to color always * fix: Bind to groupings to prevent conflicts with tooltipData inputs
38 lines
778 B
JavaScript
38 lines
778 B
JavaScript
/** @type {import("eslint").Linter.Config} */
|
|
const config = {
|
|
root: true,
|
|
parser: 'vue-eslint-parser',
|
|
parserOptions: {
|
|
parser: '@typescript-eslint/parser',
|
|
requireConfigFile: false,
|
|
ecmaVersion: 2020,
|
|
sourceType: 'module'
|
|
},
|
|
plugins: ['@typescript-eslint'],
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:vue/vue3-recommended',
|
|
'plugin:@typescript-eslint/eslint-recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'prettier'
|
|
],
|
|
env: {
|
|
node: true,
|
|
commonjs: true
|
|
},
|
|
ignorePatterns: [
|
|
'node_modules',
|
|
'dist',
|
|
'public',
|
|
'events.json',
|
|
'.*.{ts,js,vue,tsx,jsx}',
|
|
'generated/**/*'
|
|
],
|
|
rules: {
|
|
'no-var': 'off',
|
|
'@typescript-eslint/ban-ts-comment': 'warn'
|
|
}
|
|
}
|
|
|
|
module.exports = config
|