6.0.0 • Published 7 months ago

eslint-config-qubyte v6.0.0

Weekly downloads
555
License
MIT
Repository
github
Last release
7 months ago

eslint-config-qubyte

Common ESLint shareable config files for qubyte. Originally based on eslint-config-vizia.

Install into your project:

npm install --save eslint eslint-config-qubyte

Example uses:

ES5 browser project.

Make a eslintrc.config.js config file with the following in:

import config from 'eslint-config-qubyte';

export default [
  config
];

Globals can be imported from the globals package. An example which uses custom language options and globals might look like:

import globals from "globals";
import config from 'eslint-config-qubyte';

export default [
  {
    files: ["**/*.js"],
    languageOptions: {
      globals: globals.node,
    }
  },
  config
];
6.0.0

7 months ago

5.0.0

2 years ago

4.1.0

3 years ago

4.0.1

3 years ago

4.0.0

3 years ago

4.0.2

3 years ago

3.0.0

5 years ago

2.0.0

6 years ago

1.1.0

7 years ago

1.0.1

8 years ago

1.0.0

8 years ago