- Updated repository information like README, License, and app's version to 0.1.0 for better versioning; - (Possibly) fixed PWA and page theme features; - Fixed linting code format.
18 lines
259 B
JavaScript
18 lines
259 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
browser: true,
|
|
node: true,
|
|
},
|
|
extends: [
|
|
'@nuxtjs/eslint-config-typescript',
|
|
'plugin:nuxt/recommended',
|
|
'prettier',
|
|
],
|
|
plugins: [],
|
|
// add your custom rules here
|
|
rules: {
|
|
quotes: [2, 'single'],
|
|
},
|
|
};
|