├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .gitignore ├── .npmrc ├── .nycrc ├── .travis.yml ├── LICENSE ├── README.md ├── docs └── rules │ └── example-rule.md ├── lib ├── configs │ └── recommended.js ├── index.js └── rules │ └── example-rule.js ├── package.json ├── scripts ├── add-rule.js ├── lib │ ├── plugin-id.js │ ├── rules.js │ ├── update-docs-headers.js │ ├── update-lib-configs-recommended.js │ ├── update-lib-index.js │ └── update-readme.js └── update.js └── tests └── lib └── rules └── example-rule.js /.eslintignore: -------------------------------------------------------------------------------- 1 | !.*.js 2 | /.nyc_output 3 | /coverage 4 | /node_modules 5 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/template-eslint-plugin/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.nyc_output 2 | /coverage 3 | /node_modules 4 | /test.* 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock = false 2 | -------------------------------------------------------------------------------- /.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/template-eslint-plugin/HEAD/.nycrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/template-eslint-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/template-eslint-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/template-eslint-plugin/HEAD/README.md -------------------------------------------------------------------------------- /docs/rules/example-rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/template-eslint-plugin/HEAD/docs/rules/example-rule.md -------------------------------------------------------------------------------- /lib/configs/recommended.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/template-eslint-plugin/HEAD/lib/configs/recommended.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/template-eslint-plugin/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/rules/example-rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/template-eslint-plugin/HEAD/lib/rules/example-rule.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/template-eslint-plugin/HEAD/package.json -------------------------------------------------------------------------------- /scripts/add-rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/template-eslint-plugin/HEAD/scripts/add-rule.js -------------------------------------------------------------------------------- /scripts/lib/plugin-id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/template-eslint-plugin/HEAD/scripts/lib/plugin-id.js -------------------------------------------------------------------------------- /scripts/lib/rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/template-eslint-plugin/HEAD/scripts/lib/rules.js -------------------------------------------------------------------------------- /scripts/lib/update-docs-headers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/template-eslint-plugin/HEAD/scripts/lib/update-docs-headers.js -------------------------------------------------------------------------------- /scripts/lib/update-lib-configs-recommended.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/template-eslint-plugin/HEAD/scripts/lib/update-lib-configs-recommended.js -------------------------------------------------------------------------------- /scripts/lib/update-lib-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/template-eslint-plugin/HEAD/scripts/lib/update-lib-index.js -------------------------------------------------------------------------------- /scripts/lib/update-readme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/template-eslint-plugin/HEAD/scripts/lib/update-readme.js -------------------------------------------------------------------------------- /scripts/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/template-eslint-plugin/HEAD/scripts/update.js -------------------------------------------------------------------------------- /tests/lib/rules/example-rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/template-eslint-plugin/HEAD/tests/lib/rules/example-rule.js --------------------------------------------------------------------------------