├── .eslintrc ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── index.js ├── lib └── reindent.js ├── package.json └── test ├── fixtures ├── css.css ├── empty-file.html ├── html.html ├── liquid.md ├── markdown.md ├── vue.vue └── vue2.vue └── test.js /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["eslint-config-davidtheclark-node"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .nyc_output 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/stylelint-processor-arbitrary-tags/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/stylelint-processor-arbitrary-tags/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/stylelint-processor-arbitrary-tags/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/stylelint-processor-arbitrary-tags/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/stylelint-processor-arbitrary-tags/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/stylelint-processor-arbitrary-tags/HEAD/index.js -------------------------------------------------------------------------------- /lib/reindent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/stylelint-processor-arbitrary-tags/HEAD/lib/reindent.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/stylelint-processor-arbitrary-tags/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/css.css: -------------------------------------------------------------------------------- 1 | a { 2 | color: pink; 3 | } 4 | 5 | b {} 6 | -------------------------------------------------------------------------------- /test/fixtures/empty-file.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/stylelint-processor-arbitrary-tags/HEAD/test/fixtures/html.html -------------------------------------------------------------------------------- /test/fixtures/liquid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/stylelint-processor-arbitrary-tags/HEAD/test/fixtures/liquid.md -------------------------------------------------------------------------------- /test/fixtures/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/stylelint-processor-arbitrary-tags/HEAD/test/fixtures/markdown.md -------------------------------------------------------------------------------- /test/fixtures/vue.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/stylelint-processor-arbitrary-tags/HEAD/test/fixtures/vue.vue -------------------------------------------------------------------------------- /test/fixtures/vue2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/stylelint-processor-arbitrary-tags/HEAD/test/fixtures/vue2.vue -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/stylelint-processor-arbitrary-tags/HEAD/test/test.js --------------------------------------------------------------------------------