├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __tests__ └── index-test.js ├── package.json ├── src ├── Module.js ├── a11y │ ├── Parser.js │ ├── Runner.js │ ├── reporter.js │ └── rules │ │ ├── img-has-alt.js │ │ └── index.js ├── cjs.js ├── factories │ └── module-factory.js ├── index.js ├── mocks │ ├── file-mock.js │ └── style-mock.js ├── tmp │ └── README.md └── util │ ├── ast-utils.js │ └── tmp-file.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "webpack" 3 | } -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | yarn.lock -diff 2 | * text=auto 3 | bin/* eol=lf -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index-test.js: -------------------------------------------------------------------------------- 1 | // Add tests 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/Module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/src/Module.js -------------------------------------------------------------------------------- /src/a11y/Parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/src/a11y/Parser.js -------------------------------------------------------------------------------- /src/a11y/Runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/src/a11y/Runner.js -------------------------------------------------------------------------------- /src/a11y/reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/src/a11y/reporter.js -------------------------------------------------------------------------------- /src/a11y/rules/img-has-alt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/src/a11y/rules/img-has-alt.js -------------------------------------------------------------------------------- /src/a11y/rules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/src/a11y/rules/index.js -------------------------------------------------------------------------------- /src/cjs.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./index').default; 2 | -------------------------------------------------------------------------------- /src/factories/module-factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/src/factories/module-factory.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/src/index.js -------------------------------------------------------------------------------- /src/mocks/file-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/src/mocks/file-mock.js -------------------------------------------------------------------------------- /src/mocks/style-mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/src/mocks/style-mock.js -------------------------------------------------------------------------------- /src/tmp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/src/tmp/README.md -------------------------------------------------------------------------------- /src/util/ast-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/src/util/ast-utils.js -------------------------------------------------------------------------------- /src/util/tmp-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/src/util/tmp-file.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefancohen/accessibility-webpack-plugin/HEAD/yarn.lock --------------------------------------------------------------------------------