App Linter Configuration
The boilerplate created by Quasar CLI uses ESLint(http://eslint.org/) as the linter, and uses the Standard preset with some small customizations.
If you are not happy with the default linting rules, you have several options:
Overwrite individual rules in .eslintrc.js. For example, you can add the following rule to enforce semicolons instead of omitting them:
"semi": [2, "always"]Remove linter by editing
/build/webpack.base.conf.js
and removing the lines below frommodule/rules
:{ // eslintenforce: 'pre',test: /\.(vue|js)$/,loader: 'eslint-loader',include: projectRoot,exclude: /node_modules/},