@d-zero/linters v5.0.0-alpha.50
@d-zero/linters
複数のリンターと共有設定ファイルを含んだ統合リンターパッケージ
このパッケージ自体は空です。依存関係に以下のリンターと設定をリンクしています。
@d-zero/cspell-config
@d-zero/eslint-config
@d-zero/lint-staged-config
@d-zero/markuplint-config
@d-zero/prettier-config
@d-zero/pug-lint-config
@d-zero/stylelint-config
@d-zero/textlint-config
このパッケージは各依存パッケージのバージョン管理を簡潔にすることを目的としています。
:warning: プロジェクトによっては各パッケージをバラバラにインストールする方がよいかもしれません。
インストール
yarn add -D @d-zero/linters
使い方
プロジェクトで利用するには設定ファイルを用意する必要があります。このパッケージに含まれる設定ファイルを利用するには、それぞれの設定ファイルのExtends機能などを利用します。
PrettierがESM形式を要求するため、プロジェクトのモジュールタイプもESM形式にする必要があります。
// package.json
{
"type": "module"
}
CSpell
cspell.json
{
"import": ["@d-zero/cspell-config"]
}
ESLint
.eslintrc
{
"extends": ["@d-zero/eslint-config"]
}
JavaScriptのみ
:warning: TypeScriptを利用しない場合は、@d-zero/eslint-config
の代わりに@d-zero/eslint-config/base
を利用します。
{
"extends": ["@d-zero/eslint-config/base"]
}
lint-staged
lint-staged.config.mjs
import lintStagedConfigGenerator from '@d-zero/lint-staged-config';
export default lintStagedConfigGenerator();
詳細: @d-zero/lint-staged-config
Markuplint
.markuplintrc
{
"extends": ["@d-zero/markuplint-config"]
}
Prettier
.prettierrc.mjs
import config from '@d-zero/prettier-config';
export default config;
:warning: CommonJS、JSON、package.json
からは利用できません。
pug-lint
.pug-lintrc
{
"extends": "@d-zero/pug-lint-config"
}
Stylelint
.stylelintrc
{
"extends": ["@d-zero/stylelint-config"]
}
textlint
.textlintrc.js
module.exports = {
...require('@d-zero/textlint-config'),
};
:warning: 拡張子が.js
でもCommonJS形式で書きます。ESMには対応していません。
サンプルファイル
./scaffoldに各設定ファイルのサンプルを用意しています。
2 months ago
2 months ago
2 months ago
2 months ago
3 months ago
3 months ago
3 months ago
3 months ago
4 months ago
8 months ago
8 months ago
6 months ago
6 months ago
6 months ago
7 months ago
6 months ago
7 months ago
7 months ago
8 months ago
8 months ago
8 months ago
6 months ago
5 months ago
8 months ago
8 months ago
8 months ago
8 months ago
8 months ago
9 months ago
9 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
12 months ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago