├── .eslintrc.yml ├── .github └── workflows │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── index.js ├── lib ├── comment-parser.js └── rules │ └── header.js ├── package.json └── tests ├── lib ├── comment-parser-test.js └── rules │ └── header.js └── support ├── block.js └── line.js /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stuk/eslint-plugin-header/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stuk/eslint-plugin-header/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | npm-debug.log 4 | yarn.lock -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stuk/eslint-plugin-header/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stuk/eslint-plugin-header/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stuk/eslint-plugin-header/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stuk/eslint-plugin-header/HEAD/index.js -------------------------------------------------------------------------------- /lib/comment-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stuk/eslint-plugin-header/HEAD/lib/comment-parser.js -------------------------------------------------------------------------------- /lib/rules/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stuk/eslint-plugin-header/HEAD/lib/rules/header.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stuk/eslint-plugin-header/HEAD/package.json -------------------------------------------------------------------------------- /tests/lib/comment-parser-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stuk/eslint-plugin-header/HEAD/tests/lib/comment-parser-test.js -------------------------------------------------------------------------------- /tests/lib/rules/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stuk/eslint-plugin-header/HEAD/tests/lib/rules/header.js -------------------------------------------------------------------------------- /tests/support/block.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright 2015 3 | My Company 4 | */ 5 | -------------------------------------------------------------------------------- /tests/support/line.js: -------------------------------------------------------------------------------- 1 | // Copyright 2015 2 | // My Company 3 | --------------------------------------------------------------------------------