You've already forked AstralRinth
forked from didirus/AstralRinth
Billing / plus frontend (#2130)
* [wip] initial * [wip] subscriptions/plus frontend * [wip] finish payment flow * Charges page * finish most subscriptions work * Finish * update eslint * Fix issues * fix intl extract * fix omorphia locale extract * fix responsiveness * fix lint
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
const { resolve } = require("node:path");
|
||||
const { resolve } = require('node:path')
|
||||
|
||||
const project = resolve(process.cwd(), "tsconfig.json");
|
||||
const project = resolve(process.cwd(), 'tsconfig.json')
|
||||
|
||||
module.exports = {
|
||||
extends: [
|
||||
@@ -15,20 +15,21 @@ module.exports = {
|
||||
'turbo',
|
||||
],
|
||||
parserOptions: {
|
||||
sourceType: "module",
|
||||
sourceType: 'module',
|
||||
},
|
||||
settings: {
|
||||
"import/resolver": {
|
||||
'import/resolver': {
|
||||
typescript: {
|
||||
project,
|
||||
},
|
||||
},
|
||||
},
|
||||
"ignorePatterns": [".nuxt/**", ".output/**", "node_modules", "dist/**"],
|
||||
ignorePatterns: ['.nuxt/**', '.output/**', 'node_modules', 'dist/**'],
|
||||
rules: {
|
||||
'no-console': 'off',
|
||||
'vue/no-v-html': 'off',
|
||||
'vue/multi-word-component-names': 'off',
|
||||
'vue/no-multiple-template-root': 'off',
|
||||
'import/extensions': ['error', 'always', { ignorePackages: true }],
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
@@ -28,6 +28,7 @@ module.exports = {
|
||||
rules: {
|
||||
'import/no-default-export': 'off',
|
||||
'vue/multi-word-component-names': 'off',
|
||||
'vue/no-multiple-template-root': 'off',
|
||||
camelcase: 'off',
|
||||
'no-console': 'off',
|
||||
'no-bitwise': 'off',
|
||||
|
||||
Reference in New Issue
Block a user