├── .eslintrc.yaml ├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── .npmrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cli.js ├── index.js ├── package.json └── test ├── api.js ├── cli.js └── fixtures ├── await.ejs ├── invalid.ejs ├── preprocessor.ejs └── valid.ejs /.eslintrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanZim/EJS-Lint/HEAD/.eslintrc.yaml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanZim/EJS-Lint/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanZim/EJS-Lint/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanZim/EJS-Lint/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanZim/EJS-Lint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanZim/EJS-Lint/HEAD/README.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanZim/EJS-Lint/HEAD/cli.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanZim/EJS-Lint/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanZim/EJS-Lint/HEAD/package.json -------------------------------------------------------------------------------- /test/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanZim/EJS-Lint/HEAD/test/api.js -------------------------------------------------------------------------------- /test/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RyanZim/EJS-Lint/HEAD/test/cli.js -------------------------------------------------------------------------------- /test/fixtures/await.ejs: -------------------------------------------------------------------------------- 1 | <% await foo() %> 2 | -------------------------------------------------------------------------------- /test/fixtures/invalid.ejs: -------------------------------------------------------------------------------- 1 | <% for(i=0;i<5;i++){ %> 2 | Hello! 3 | <% ] %> -------------------------------------------------------------------------------- /test/fixtures/preprocessor.ejs: -------------------------------------------------------------------------------- 1 | <% include valid.ejs %> 2 | -------------------------------------------------------------------------------- /test/fixtures/valid.ejs: -------------------------------------------------------------------------------- 1 | <% for(i=0;i<5;i++){ %> 2 | Hello! 3 | <% } %> --------------------------------------------------------------------------------