3.3.2 • Published 6 months ago
eslint-config-arklint v3.3.2
eslint-config-arklint
My personal ESLint configuration.
Installation
yarn add eslint eslint-config-arklint -D
Usage
!WARNING Only flat config is supported, either CJS or ESM.
The default configuration includes standards and stylistic rules for JS. Optional extensions can be added to add rules for import
, react
and jsdoc
:
ESM
import arklintConfig from "eslint-config-arklint";
import extensions from "eslint-config-arklint/extensions";
const { importConfig, reactConfig, jsdocConfig } = extensions;
export default [
...arklintConfig,
...reactConfig,
...importConfig,
...jsdocConfig
];
CJS
const arklintConfig = require("eslint-config-arklint");
const { importConfig, reactConfig, jsdocConfig } = require("eslint-config-arklint/extensions");
module.exports = [
...arklintConfig,
...reactConfig,
...importConfig,
...jsdocConfig
];
3.3.2
6 months ago
3.3.1
7 months ago
3.3.0
8 months ago
3.2.0
9 months ago
3.1.1
9 months ago
2.0.0
9 months ago
3.1.0
9 months ago
3.0.1
9 months ago
3.0.0
9 months ago
1.11.0
11 months ago
1.10.2
12 months ago
1.10.1
12 months ago
1.10.0
12 months ago
1.9.0
12 months ago
1.8.0
1 year ago
1.7.1
1 year ago
1.7.0
1 year ago
1.6.0
1 year ago
1.5.0
1 year ago
1.4.0
1 year ago
1.3.1
1 year ago
1.2.3
1 year ago
1.2.2
1 year ago
1.2.1
1 year ago
1.3.0
1 year ago
1.2.0
2 years ago
1.1.0
2 years ago
1.0.3
2 years ago
1.0.2
2 years ago
1.0.1
2 years ago
1.0.0
2 years ago