├── .editorconfig ├── .gitignore ├── .jsinspectrc ├── .npmignore ├── .sublimelinterrc ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── bin └── pug-lint ├── docs └── rules.md ├── generators ├── rule-templates │ ├── rule.js │ └── test.js └── rule.js ├── lib ├── cli.js ├── config-file.js ├── errors.js ├── linter.js ├── pug-file.js ├── reporters │ ├── console.js │ └── inline.js ├── rules │ ├── disallow-attribute-concatenation.js │ ├── disallow-attribute-interpolation.js │ ├── disallow-attribute-template-string.js │ ├── disallow-block-expansion.js │ ├── disallow-class-attribute-with-static-value.js │ ├── disallow-class-literals-before-attributes.js │ ├── disallow-class-literals-before-id-literals.js │ ├── disallow-class-literals.js │ ├── disallow-duplicate-attributes.js │ ├── disallow-html-text.js │ ├── disallow-id-attribute-with-static-value.js │ ├── disallow-id-literals-before-attributes.js │ ├── disallow-id-literals.js │ ├── disallow-legacy-mixin-call.js │ ├── disallow-multiple-line-breaks.js │ ├── disallow-space-after-code-operator.js │ ├── disallow-spaces-inside-attribute-brackets.js │ ├── disallow-specific-attributes.js │ ├── disallow-specific-tags.js │ ├── disallow-string-concatenation.js │ ├── disallow-string-interpolation.js │ ├── disallow-tag-interpolation.js │ ├── disallow-template-string.js │ ├── disallow-trailing-spaces.js │ ├── maximum-line-length.js │ ├── maximum-number-of-lines.js │ ├── require-class-literals-before-attributes.js │ ├── require-class-literals-before-id-literals.js │ ├── require-id-literals-before-attributes.js │ ├── require-line-feed-at-file-end.js │ ├── require-lower-case-attributes.js │ ├── require-lower-case-tags.js │ ├── require-space-after-code-operator.js │ ├── require-spaces-inside-attribute-brackets.js │ ├── require-specific-attributes.js │ ├── require-strict-equality-operators.js │ ├── validate-attribute-quote-marks.js │ ├── validate-attribute-separator.js │ ├── validate-div-tags.js │ ├── validate-extensions.js │ ├── validate-indentation.js │ ├── validate-line-breaks.js │ ├── validate-self-closing-tags.js │ └── validate-template-string.js └── utils.js ├── package.json ├── pliers.js ├── pliers ├── build-changelog.js ├── build-json-schema.js ├── build-rule-docs.js └── parse-docs-from-rules.js ├── schemas ├── _template-schema.json └── pug-lintrc-schema.json └── test ├── cli.test.js ├── config-file.test.js ├── fixtures ├── config-file │ ├── dotfile │ │ ├── .jade-lintrc │ │ └── .pug-lintrc │ ├── js │ │ └── .pug-lintrc.js │ ├── json │ │ ├── .jade-lint.json │ │ ├── .pug-lint.json │ │ └── .pug-lintrc.json │ ├── package │ │ └── package.json │ ├── reporter.js │ ├── rule-a.js │ └── rule-b.js ├── invalid.pug ├── reporters │ ├── expected-disallow-block-expansion--console.txt │ ├── expected-disallow-block-expansion--inline.txt │ └── expected-invalid.txt └── rules │ ├── disallow-attribute-concatenation.pug │ ├── disallow-attribute-interpolation.pug │ ├── disallow-attribute-template-string.pug │ ├── disallow-block-expansion.pug │ ├── disallow-class-attribute-with-static-value.pug │ ├── disallow-class-literals-before-attributes.pug │ ├── disallow-class-literals-before-id-literals.pug │ ├── disallow-class-literals.pug │ ├── disallow-duplicate-attributes.pug │ ├── disallow-html-text.pug │ ├── disallow-id-attribute-with-static-value.pug │ ├── disallow-id-literals-before-attributes.pug │ ├── disallow-id-literals.pug │ ├── disallow-legacy-mixin-call.pug │ ├── disallow-multiple-line-breaks.pug │ ├── disallow-space-after-code-operator.pug │ ├── disallow-spaces-inside-attribute-brackets.pug │ ├── disallow-specific-attributes.pug │ ├── disallow-specific-tags.pug │ ├── disallow-string-concatenation.pug │ ├── disallow-string-interpolation.pug │ ├── disallow-tag-interpolation.pug │ ├── disallow-template-string.pug │ ├── invalid.pug │ ├── maximum-number-of-lines.pug │ ├── require-class-literals-before-attributes.pug │ ├── require-class-literals-before-id-literals.pug │ ├── require-id-literals-before-attributes.pug │ ├── require-line-feed-at-file-end--missing.pug │ ├── require-line-feed-at-file-end.pug │ ├── require-lower-case-attributes.pug │ ├── require-lower-case-tags.pug │ ├── require-space-after-code-operator.pug │ ├── require-spaces-inside-attribute-brackets.pug │ ├── require-specific-attributes.pug │ ├── require-strict-equality-operators.pug │ ├── validate-attribute-quote-marks.pug │ ├── validate-attribute-separator--multiline.pug │ ├── validate-attribute-separator.pug │ ├── validate-div-tags--html.pug │ ├── validate-div-tags--xml.pug │ ├── validate-extensions.pug │ ├── validate-indentation--spaces.pug │ ├── validate-indentation--tabs.pug │ ├── validate-self-closing-tags--html.pug │ ├── validate-self-closing-tags--xml.pug │ └── validate-template-string.pug ├── linter.test.js ├── reporters.test.js ├── reporters ├── console.test.js └── inline.test.js ├── rules.test.js └── rules ├── disallow-attribute-concatenation.test.js ├── disallow-attribute-interpolation.test.js ├── disallow-attribute-template-string.test.js ├── disallow-block-expansion.test.js ├── disallow-class-attribute-with-static-value.test.js ├── disallow-class-literals-before-attributes.test.js ├── disallow-class-literals-before-id-literals.test.js ├── disallow-class-literals.test.js ├── disallow-duplicate-attributes.test.js ├── disallow-html-text.test.js ├── disallow-id-attribute-with-static-value.test.js ├── disallow-id-literals-before-attributes.test.js ├── disallow-id-literals.test.js ├── disallow-legacy-mixin-call.test.js ├── disallow-multiple-line-breaks.test.js ├── disallow-space-after-code-operator.test.js ├── disallow-spaces-inside-attribute-brackets.test.js ├── disallow-specific-attributes.test.js ├── disallow-specific-tags.test.js ├── disallow-string-concatenation.test.js ├── disallow-string-interpolation.test.js ├── disallow-tag-interpolation.test.js ├── disallow-template-string.test.js ├── disallow-trailing-spaces.test.js ├── maximum-line-length.test.js ├── maximum-number-of-lines.test.js ├── require-class-literals-before-attributes.test.js ├── require-class-literals-before-id-literals.test.js ├── require-id-literals-before-attributes.test.js ├── require-line-feed-at-file-end.test.js ├── require-lower-case-attributes.test.js ├── require-lower-case-tags.test.js ├── require-space-after-code-operator.test.js ├── require-spaces-inside-attribute-brackets.test.js ├── require-specific-attributes.test.js ├── require-strict-equality-operators.test.js ├── validate-attribute-quote-marks.test.js ├── validate-attribute-separator.test.js ├── validate-div-tags.test.js ├── validate-extensions.test.js ├── validate-indentation.test.js ├── validate-line-breaks.test.js ├── validate-self-closing-tags.test.js └── validate-template-string.test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | coverage 2 | node_modules 3 | npm-debug.log 4 | test/*ignore* 5 | -------------------------------------------------------------------------------- /.jsinspectrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/.jsinspectrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/.npmignore -------------------------------------------------------------------------------- /.sublimelinterrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/.sublimelinterrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/README.md -------------------------------------------------------------------------------- /bin/pug-lint: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/cli')(process.argv); 3 | -------------------------------------------------------------------------------- /docs/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/docs/rules.md -------------------------------------------------------------------------------- /generators/rule-templates/rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/generators/rule-templates/rule.js -------------------------------------------------------------------------------- /generators/rule-templates/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/generators/rule-templates/test.js -------------------------------------------------------------------------------- /generators/rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/generators/rule.js -------------------------------------------------------------------------------- /lib/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/cli.js -------------------------------------------------------------------------------- /lib/config-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/config-file.js -------------------------------------------------------------------------------- /lib/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/errors.js -------------------------------------------------------------------------------- /lib/linter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/linter.js -------------------------------------------------------------------------------- /lib/pug-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/pug-file.js -------------------------------------------------------------------------------- /lib/reporters/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/reporters/console.js -------------------------------------------------------------------------------- /lib/reporters/inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/reporters/inline.js -------------------------------------------------------------------------------- /lib/rules/disallow-attribute-concatenation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/disallow-attribute-concatenation.js -------------------------------------------------------------------------------- /lib/rules/disallow-attribute-interpolation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/disallow-attribute-interpolation.js -------------------------------------------------------------------------------- /lib/rules/disallow-attribute-template-string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/disallow-attribute-template-string.js -------------------------------------------------------------------------------- /lib/rules/disallow-block-expansion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/disallow-block-expansion.js -------------------------------------------------------------------------------- /lib/rules/disallow-class-attribute-with-static-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/disallow-class-attribute-with-static-value.js -------------------------------------------------------------------------------- /lib/rules/disallow-class-literals-before-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/disallow-class-literals-before-attributes.js -------------------------------------------------------------------------------- /lib/rules/disallow-class-literals-before-id-literals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/disallow-class-literals-before-id-literals.js -------------------------------------------------------------------------------- /lib/rules/disallow-class-literals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/disallow-class-literals.js -------------------------------------------------------------------------------- /lib/rules/disallow-duplicate-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/disallow-duplicate-attributes.js -------------------------------------------------------------------------------- /lib/rules/disallow-html-text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/disallow-html-text.js -------------------------------------------------------------------------------- /lib/rules/disallow-id-attribute-with-static-value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/disallow-id-attribute-with-static-value.js -------------------------------------------------------------------------------- /lib/rules/disallow-id-literals-before-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/disallow-id-literals-before-attributes.js -------------------------------------------------------------------------------- /lib/rules/disallow-id-literals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/disallow-id-literals.js -------------------------------------------------------------------------------- /lib/rules/disallow-legacy-mixin-call.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/disallow-legacy-mixin-call.js -------------------------------------------------------------------------------- /lib/rules/disallow-multiple-line-breaks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/disallow-multiple-line-breaks.js -------------------------------------------------------------------------------- /lib/rules/disallow-space-after-code-operator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/disallow-space-after-code-operator.js -------------------------------------------------------------------------------- /lib/rules/disallow-spaces-inside-attribute-brackets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/disallow-spaces-inside-attribute-brackets.js -------------------------------------------------------------------------------- /lib/rules/disallow-specific-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/disallow-specific-attributes.js -------------------------------------------------------------------------------- /lib/rules/disallow-specific-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/disallow-specific-tags.js -------------------------------------------------------------------------------- /lib/rules/disallow-string-concatenation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/disallow-string-concatenation.js -------------------------------------------------------------------------------- /lib/rules/disallow-string-interpolation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/disallow-string-interpolation.js -------------------------------------------------------------------------------- /lib/rules/disallow-tag-interpolation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/disallow-tag-interpolation.js -------------------------------------------------------------------------------- /lib/rules/disallow-template-string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/disallow-template-string.js -------------------------------------------------------------------------------- /lib/rules/disallow-trailing-spaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/disallow-trailing-spaces.js -------------------------------------------------------------------------------- /lib/rules/maximum-line-length.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/maximum-line-length.js -------------------------------------------------------------------------------- /lib/rules/maximum-number-of-lines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/maximum-number-of-lines.js -------------------------------------------------------------------------------- /lib/rules/require-class-literals-before-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/require-class-literals-before-attributes.js -------------------------------------------------------------------------------- /lib/rules/require-class-literals-before-id-literals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/require-class-literals-before-id-literals.js -------------------------------------------------------------------------------- /lib/rules/require-id-literals-before-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/require-id-literals-before-attributes.js -------------------------------------------------------------------------------- /lib/rules/require-line-feed-at-file-end.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/require-line-feed-at-file-end.js -------------------------------------------------------------------------------- /lib/rules/require-lower-case-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/require-lower-case-attributes.js -------------------------------------------------------------------------------- /lib/rules/require-lower-case-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/require-lower-case-tags.js -------------------------------------------------------------------------------- /lib/rules/require-space-after-code-operator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/require-space-after-code-operator.js -------------------------------------------------------------------------------- /lib/rules/require-spaces-inside-attribute-brackets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/require-spaces-inside-attribute-brackets.js -------------------------------------------------------------------------------- /lib/rules/require-specific-attributes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/require-specific-attributes.js -------------------------------------------------------------------------------- /lib/rules/require-strict-equality-operators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/require-strict-equality-operators.js -------------------------------------------------------------------------------- /lib/rules/validate-attribute-quote-marks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/validate-attribute-quote-marks.js -------------------------------------------------------------------------------- /lib/rules/validate-attribute-separator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/validate-attribute-separator.js -------------------------------------------------------------------------------- /lib/rules/validate-div-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/validate-div-tags.js -------------------------------------------------------------------------------- /lib/rules/validate-extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/validate-extensions.js -------------------------------------------------------------------------------- /lib/rules/validate-indentation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/validate-indentation.js -------------------------------------------------------------------------------- /lib/rules/validate-line-breaks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/validate-line-breaks.js -------------------------------------------------------------------------------- /lib/rules/validate-self-closing-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/validate-self-closing-tags.js -------------------------------------------------------------------------------- /lib/rules/validate-template-string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/rules/validate-template-string.js -------------------------------------------------------------------------------- /lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/lib/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/package.json -------------------------------------------------------------------------------- /pliers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/pliers.js -------------------------------------------------------------------------------- /pliers/build-changelog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/pliers/build-changelog.js -------------------------------------------------------------------------------- /pliers/build-json-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/pliers/build-json-schema.js -------------------------------------------------------------------------------- /pliers/build-rule-docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/pliers/build-rule-docs.js -------------------------------------------------------------------------------- /pliers/parse-docs-from-rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/pliers/parse-docs-from-rules.js -------------------------------------------------------------------------------- /schemas/_template-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/schemas/_template-schema.json -------------------------------------------------------------------------------- /schemas/pug-lintrc-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/schemas/pug-lintrc-schema.json -------------------------------------------------------------------------------- /test/cli.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/cli.test.js -------------------------------------------------------------------------------- /test/config-file.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/config-file.test.js -------------------------------------------------------------------------------- /test/fixtures/config-file/dotfile/.jade-lintrc: -------------------------------------------------------------------------------- 1 | // Comment 2 | { "disallowBlockExpansion": null 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/config-file/dotfile/.pug-lintrc: -------------------------------------------------------------------------------- 1 | // Comment 2 | { "disallowBlockExpansion": true 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/config-file/js/.pug-lintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/config-file/js/.pug-lintrc.js -------------------------------------------------------------------------------- /test/fixtures/config-file/json/.jade-lint.json: -------------------------------------------------------------------------------- 1 | // Comment 2 | { "disallowBlockExpansion": null 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/config-file/json/.pug-lint.json: -------------------------------------------------------------------------------- 1 | // Comment 2 | { "disallowBlockExpansion": null 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/config-file/json/.pug-lintrc.json: -------------------------------------------------------------------------------- 1 | // Comment 2 | { "disallowBlockExpansion": true 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/config-file/package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/config-file/package/package.json -------------------------------------------------------------------------------- /test/fixtures/config-file/reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/config-file/reporter.js -------------------------------------------------------------------------------- /test/fixtures/config-file/rule-a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/config-file/rule-a.js -------------------------------------------------------------------------------- /test/fixtures/config-file/rule-b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/config-file/rule-b.js -------------------------------------------------------------------------------- /test/fixtures/invalid.pug: -------------------------------------------------------------------------------- 1 | div=# 2 | -------------------------------------------------------------------------------- /test/fixtures/reporters/expected-disallow-block-expansion--console.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/reporters/expected-disallow-block-expansion--console.txt -------------------------------------------------------------------------------- /test/fixtures/reporters/expected-disallow-block-expansion--inline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/reporters/expected-disallow-block-expansion--inline.txt -------------------------------------------------------------------------------- /test/fixtures/reporters/expected-invalid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/reporters/expected-invalid.txt -------------------------------------------------------------------------------- /test/fixtures/rules/disallow-attribute-concatenation.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/disallow-attribute-concatenation.pug -------------------------------------------------------------------------------- /test/fixtures/rules/disallow-attribute-interpolation.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/disallow-attribute-interpolation.pug -------------------------------------------------------------------------------- /test/fixtures/rules/disallow-attribute-template-string.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/disallow-attribute-template-string.pug -------------------------------------------------------------------------------- /test/fixtures/rules/disallow-block-expansion.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/disallow-block-expansion.pug -------------------------------------------------------------------------------- /test/fixtures/rules/disallow-class-attribute-with-static-value.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/disallow-class-attribute-with-static-value.pug -------------------------------------------------------------------------------- /test/fixtures/rules/disallow-class-literals-before-attributes.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/disallow-class-literals-before-attributes.pug -------------------------------------------------------------------------------- /test/fixtures/rules/disallow-class-literals-before-id-literals.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/disallow-class-literals-before-id-literals.pug -------------------------------------------------------------------------------- /test/fixtures/rules/disallow-class-literals.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/disallow-class-literals.pug -------------------------------------------------------------------------------- /test/fixtures/rules/disallow-duplicate-attributes.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/disallow-duplicate-attributes.pug -------------------------------------------------------------------------------- /test/fixtures/rules/disallow-html-text.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/disallow-html-text.pug -------------------------------------------------------------------------------- /test/fixtures/rules/disallow-id-attribute-with-static-value.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/disallow-id-attribute-with-static-value.pug -------------------------------------------------------------------------------- /test/fixtures/rules/disallow-id-literals-before-attributes.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/disallow-id-literals-before-attributes.pug -------------------------------------------------------------------------------- /test/fixtures/rules/disallow-id-literals.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/disallow-id-literals.pug -------------------------------------------------------------------------------- /test/fixtures/rules/disallow-legacy-mixin-call.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/disallow-legacy-mixin-call.pug -------------------------------------------------------------------------------- /test/fixtures/rules/disallow-multiple-line-breaks.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/disallow-multiple-line-breaks.pug -------------------------------------------------------------------------------- /test/fixtures/rules/disallow-space-after-code-operator.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/disallow-space-after-code-operator.pug -------------------------------------------------------------------------------- /test/fixtures/rules/disallow-spaces-inside-attribute-brackets.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/disallow-spaces-inside-attribute-brackets.pug -------------------------------------------------------------------------------- /test/fixtures/rules/disallow-specific-attributes.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/disallow-specific-attributes.pug -------------------------------------------------------------------------------- /test/fixtures/rules/disallow-specific-tags.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/disallow-specific-tags.pug -------------------------------------------------------------------------------- /test/fixtures/rules/disallow-string-concatenation.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/disallow-string-concatenation.pug -------------------------------------------------------------------------------- /test/fixtures/rules/disallow-string-interpolation.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/disallow-string-interpolation.pug -------------------------------------------------------------------------------- /test/fixtures/rules/disallow-tag-interpolation.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/disallow-tag-interpolation.pug -------------------------------------------------------------------------------- /test/fixtures/rules/disallow-template-string.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/disallow-template-string.pug -------------------------------------------------------------------------------- /test/fixtures/rules/invalid.pug: -------------------------------------------------------------------------------- 1 | div=# 2 | -------------------------------------------------------------------------------- /test/fixtures/rules/maximum-number-of-lines.pug: -------------------------------------------------------------------------------- 1 | div 2 | 3 | div 4 | -------------------------------------------------------------------------------- /test/fixtures/rules/require-class-literals-before-attributes.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/require-class-literals-before-attributes.pug -------------------------------------------------------------------------------- /test/fixtures/rules/require-class-literals-before-id-literals.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/require-class-literals-before-id-literals.pug -------------------------------------------------------------------------------- /test/fixtures/rules/require-id-literals-before-attributes.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/require-id-literals-before-attributes.pug -------------------------------------------------------------------------------- /test/fixtures/rules/require-line-feed-at-file-end--missing.pug: -------------------------------------------------------------------------------- 1 | div 2 | div -------------------------------------------------------------------------------- /test/fixtures/rules/require-line-feed-at-file-end.pug: -------------------------------------------------------------------------------- 1 | div 2 | div 3 | -------------------------------------------------------------------------------- /test/fixtures/rules/require-lower-case-attributes.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/require-lower-case-attributes.pug -------------------------------------------------------------------------------- /test/fixtures/rules/require-lower-case-tags.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/require-lower-case-tags.pug -------------------------------------------------------------------------------- /test/fixtures/rules/require-space-after-code-operator.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/require-space-after-code-operator.pug -------------------------------------------------------------------------------- /test/fixtures/rules/require-spaces-inside-attribute-brackets.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/require-spaces-inside-attribute-brackets.pug -------------------------------------------------------------------------------- /test/fixtures/rules/require-specific-attributes.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/require-specific-attributes.pug -------------------------------------------------------------------------------- /test/fixtures/rules/require-strict-equality-operators.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/require-strict-equality-operators.pug -------------------------------------------------------------------------------- /test/fixtures/rules/validate-attribute-quote-marks.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/validate-attribute-quote-marks.pug -------------------------------------------------------------------------------- /test/fixtures/rules/validate-attribute-separator--multiline.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/validate-attribute-separator--multiline.pug -------------------------------------------------------------------------------- /test/fixtures/rules/validate-attribute-separator.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/validate-attribute-separator.pug -------------------------------------------------------------------------------- /test/fixtures/rules/validate-div-tags--html.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/validate-div-tags--html.pug -------------------------------------------------------------------------------- /test/fixtures/rules/validate-div-tags--xml.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/validate-div-tags--xml.pug -------------------------------------------------------------------------------- /test/fixtures/rules/validate-extensions.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/validate-extensions.pug -------------------------------------------------------------------------------- /test/fixtures/rules/validate-indentation--spaces.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/validate-indentation--spaces.pug -------------------------------------------------------------------------------- /test/fixtures/rules/validate-indentation--tabs.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/validate-indentation--tabs.pug -------------------------------------------------------------------------------- /test/fixtures/rules/validate-self-closing-tags--html.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/validate-self-closing-tags--html.pug -------------------------------------------------------------------------------- /test/fixtures/rules/validate-self-closing-tags--xml.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/validate-self-closing-tags--xml.pug -------------------------------------------------------------------------------- /test/fixtures/rules/validate-template-string.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/fixtures/rules/validate-template-string.pug -------------------------------------------------------------------------------- /test/linter.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/linter.test.js -------------------------------------------------------------------------------- /test/reporters.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/reporters.test.js -------------------------------------------------------------------------------- /test/reporters/console.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/reporters/console.test.js -------------------------------------------------------------------------------- /test/reporters/inline.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/reporters/inline.test.js -------------------------------------------------------------------------------- /test/rules.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules.test.js -------------------------------------------------------------------------------- /test/rules/disallow-attribute-concatenation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/disallow-attribute-concatenation.test.js -------------------------------------------------------------------------------- /test/rules/disallow-attribute-interpolation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/disallow-attribute-interpolation.test.js -------------------------------------------------------------------------------- /test/rules/disallow-attribute-template-string.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/disallow-attribute-template-string.test.js -------------------------------------------------------------------------------- /test/rules/disallow-block-expansion.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/disallow-block-expansion.test.js -------------------------------------------------------------------------------- /test/rules/disallow-class-attribute-with-static-value.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/disallow-class-attribute-with-static-value.test.js -------------------------------------------------------------------------------- /test/rules/disallow-class-literals-before-attributes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/disallow-class-literals-before-attributes.test.js -------------------------------------------------------------------------------- /test/rules/disallow-class-literals-before-id-literals.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/disallow-class-literals-before-id-literals.test.js -------------------------------------------------------------------------------- /test/rules/disallow-class-literals.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/disallow-class-literals.test.js -------------------------------------------------------------------------------- /test/rules/disallow-duplicate-attributes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/disallow-duplicate-attributes.test.js -------------------------------------------------------------------------------- /test/rules/disallow-html-text.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/disallow-html-text.test.js -------------------------------------------------------------------------------- /test/rules/disallow-id-attribute-with-static-value.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/disallow-id-attribute-with-static-value.test.js -------------------------------------------------------------------------------- /test/rules/disallow-id-literals-before-attributes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/disallow-id-literals-before-attributes.test.js -------------------------------------------------------------------------------- /test/rules/disallow-id-literals.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/disallow-id-literals.test.js -------------------------------------------------------------------------------- /test/rules/disallow-legacy-mixin-call.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/disallow-legacy-mixin-call.test.js -------------------------------------------------------------------------------- /test/rules/disallow-multiple-line-breaks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/disallow-multiple-line-breaks.test.js -------------------------------------------------------------------------------- /test/rules/disallow-space-after-code-operator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/disallow-space-after-code-operator.test.js -------------------------------------------------------------------------------- /test/rules/disallow-spaces-inside-attribute-brackets.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/disallow-spaces-inside-attribute-brackets.test.js -------------------------------------------------------------------------------- /test/rules/disallow-specific-attributes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/disallow-specific-attributes.test.js -------------------------------------------------------------------------------- /test/rules/disallow-specific-tags.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/disallow-specific-tags.test.js -------------------------------------------------------------------------------- /test/rules/disallow-string-concatenation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/disallow-string-concatenation.test.js -------------------------------------------------------------------------------- /test/rules/disallow-string-interpolation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/disallow-string-interpolation.test.js -------------------------------------------------------------------------------- /test/rules/disallow-tag-interpolation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/disallow-tag-interpolation.test.js -------------------------------------------------------------------------------- /test/rules/disallow-template-string.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/disallow-template-string.test.js -------------------------------------------------------------------------------- /test/rules/disallow-trailing-spaces.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/disallow-trailing-spaces.test.js -------------------------------------------------------------------------------- /test/rules/maximum-line-length.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/maximum-line-length.test.js -------------------------------------------------------------------------------- /test/rules/maximum-number-of-lines.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/maximum-number-of-lines.test.js -------------------------------------------------------------------------------- /test/rules/require-class-literals-before-attributes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/require-class-literals-before-attributes.test.js -------------------------------------------------------------------------------- /test/rules/require-class-literals-before-id-literals.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/require-class-literals-before-id-literals.test.js -------------------------------------------------------------------------------- /test/rules/require-id-literals-before-attributes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/require-id-literals-before-attributes.test.js -------------------------------------------------------------------------------- /test/rules/require-line-feed-at-file-end.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/require-line-feed-at-file-end.test.js -------------------------------------------------------------------------------- /test/rules/require-lower-case-attributes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/require-lower-case-attributes.test.js -------------------------------------------------------------------------------- /test/rules/require-lower-case-tags.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/require-lower-case-tags.test.js -------------------------------------------------------------------------------- /test/rules/require-space-after-code-operator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/require-space-after-code-operator.test.js -------------------------------------------------------------------------------- /test/rules/require-spaces-inside-attribute-brackets.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/require-spaces-inside-attribute-brackets.test.js -------------------------------------------------------------------------------- /test/rules/require-specific-attributes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/require-specific-attributes.test.js -------------------------------------------------------------------------------- /test/rules/require-strict-equality-operators.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/require-strict-equality-operators.test.js -------------------------------------------------------------------------------- /test/rules/validate-attribute-quote-marks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/validate-attribute-quote-marks.test.js -------------------------------------------------------------------------------- /test/rules/validate-attribute-separator.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/validate-attribute-separator.test.js -------------------------------------------------------------------------------- /test/rules/validate-div-tags.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/validate-div-tags.test.js -------------------------------------------------------------------------------- /test/rules/validate-extensions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/validate-extensions.test.js -------------------------------------------------------------------------------- /test/rules/validate-indentation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/validate-indentation.test.js -------------------------------------------------------------------------------- /test/rules/validate-line-breaks.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/validate-line-breaks.test.js -------------------------------------------------------------------------------- /test/rules/validate-self-closing-tags.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/validate-self-closing-tags.test.js -------------------------------------------------------------------------------- /test/rules/validate-template-string.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pugjs/pug-lint/HEAD/test/rules/validate-template-string.test.js --------------------------------------------------------------------------------