├── .gitignore ├── .vscode └── launch.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── images ├── disable-block_1.2.0.gif └── icon.png ├── package.json ├── snippets └── snippets.json ├── src ├── eslint-rule-hints.js └── snippets.json └── vsc-extension-quickstart.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drKnoxy/eslint-disable-snippets/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drKnoxy/eslint-disable-snippets/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | LICENSE 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drKnoxy/eslint-disable-snippets/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drKnoxy/eslint-disable-snippets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drKnoxy/eslint-disable-snippets/HEAD/README.md -------------------------------------------------------------------------------- /images/disable-block_1.2.0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drKnoxy/eslint-disable-snippets/HEAD/images/disable-block_1.2.0.gif -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drKnoxy/eslint-disable-snippets/HEAD/images/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drKnoxy/eslint-disable-snippets/HEAD/package.json -------------------------------------------------------------------------------- /snippets/snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drKnoxy/eslint-disable-snippets/HEAD/snippets/snippets.json -------------------------------------------------------------------------------- /src/eslint-rule-hints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drKnoxy/eslint-disable-snippets/HEAD/src/eslint-rule-hints.js -------------------------------------------------------------------------------- /src/snippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drKnoxy/eslint-disable-snippets/HEAD/src/snippets.json -------------------------------------------------------------------------------- /vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drKnoxy/eslint-disable-snippets/HEAD/vsc-extension-quickstart.md --------------------------------------------------------------------------------