├── .babelrc ├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ ├── pr.yml │ └── release.yml ├── .gitignore ├── .lintstagedrc.js ├── .prettierignore ├── .prettierrc.json ├── README.md ├── jest.config.js ├── package.json ├── rollup.config.js ├── src ├── index.js ├── options.js ├── parser.js ├── regex.json ├── sorter.json └── utils │ └── sort.js ├── test ├── mocks │ ├── babel │ │ ├── default_behaviour_formatted.js │ │ ├── default_behaviour_unformatted.js │ │ ├── no_duplicate_unknown_formatted.js │ │ ├── no_duplicate_unknown_unformatted.js │ │ ├── no_remove_duplicate_formatted.js │ │ ├── no_remove_duplicate_unformatted.js │ │ ├── remove_duplicate_formatted.js │ │ └── remove_duplicate_unformatted.js │ ├── css │ │ ├── default_behaviour_formatted.css │ │ ├── default_behaviour_unformatted.css │ │ ├── no_duplicate_unknown_formatted.css │ │ ├── no_duplicate_unknown_unformatted.css │ │ ├── no_remove_duplicate_formatted.css │ │ ├── no_remove_duplicate_unformatted.css │ │ ├── remove_duplicate_formatted.css │ │ └── remove_duplicate_unformatted.css │ ├── customRegex.json │ ├── flow │ │ ├── default_behaviour_formatted.js │ │ ├── default_behaviour_unformatted.js │ │ ├── no_duplicate_unknown_formatted.js │ │ ├── no_duplicate_unknown_unformatted.js │ │ ├── no_remove_duplicate_formatted.js │ │ ├── no_remove_duplicate_unformatted.js │ │ ├── remove_duplicate_formatted.js │ │ └── remove_duplicate_unformatted.js │ ├── html │ │ ├── custom_regex_formatted.html │ │ ├── custom_regex_unformatted.html │ │ ├── default_behaviour_formatted.html │ │ ├── default_behaviour_unformatted.html │ │ ├── no_duplicate_unknown_formatted.html │ │ ├── no_duplicate_unknown_unformatted.html │ │ ├── no_remove_duplicate_formatted.html │ │ ├── no_remove_duplicate_unformatted.html │ │ ├── remove_duplicate_formatted.html │ │ └── remove_duplicate_unformatted.html │ ├── less │ │ ├── default_behaviour_formatted.less │ │ ├── default_behaviour_unformatted.less │ │ ├── no_duplicate_unknown_formatted.less │ │ ├── no_duplicate_unknown_unformatted.less │ │ ├── no_remove_duplicate_formatted.less │ │ ├── no_remove_duplicate_unformatted.less │ │ ├── remove_duplicate_formatted.less │ │ └── remove_duplicate_unformatted.less │ ├── regexMalformed.json │ ├── scss │ │ ├── default_behaviour_formatted.scss │ │ ├── default_behaviour_unformatted.scss │ │ ├── no_duplicate_unknown_formatted.scss │ │ ├── no_duplicate_unknown_unformatted.scss │ │ ├── no_remove_duplicate_formatted.scss │ │ ├── no_remove_duplicate_unformatted.scss │ │ ├── remove_duplicate_formatted.scss │ │ └── remove_duplicate_unformatted.scss │ ├── sorterMalformed.json │ ├── typescript │ │ ├── default_behaviour_formatted.tsx │ │ ├── default_behaviour_unformatted.tsx │ │ ├── no_duplicate_unknown_formatted.tsx │ │ ├── no_duplicate_unknown_unformatted.tsx │ │ ├── no_remove_duplicate_formatted.tsx │ │ ├── no_remove_duplicate_unformatted.tsx │ │ ├── remove_duplicate_formatted.tsx │ │ └── remove_duplicate_unformatted.tsx │ └── vue │ │ ├── default_behaviour_formatted.vue │ │ ├── default_behaviour_unformatted.vue │ │ ├── no_duplicate_unknown_formatted.vue │ │ ├── no_duplicate_unknown_unformatted.vue │ │ ├── no_remove_duplicate_formatted.vue │ │ ├── no_remove_duplicate_unformatted.vue │ │ ├── remove_duplicate_formatted.vue │ │ └── remove_duplicate_unformatted.vue └── plugin.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintstagedrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/.lintstagedrc.js -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | coverage -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/src/index.js -------------------------------------------------------------------------------- /src/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/src/options.js -------------------------------------------------------------------------------- /src/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/src/parser.js -------------------------------------------------------------------------------- /src/regex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/src/regex.json -------------------------------------------------------------------------------- /src/sorter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/src/sorter.json -------------------------------------------------------------------------------- /src/utils/sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/src/utils/sort.js -------------------------------------------------------------------------------- /test/mocks/babel/default_behaviour_formatted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/babel/default_behaviour_formatted.js -------------------------------------------------------------------------------- /test/mocks/babel/default_behaviour_unformatted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/babel/default_behaviour_unformatted.js -------------------------------------------------------------------------------- /test/mocks/babel/no_duplicate_unknown_formatted.js: -------------------------------------------------------------------------------- 1 | function App() { 2 | render(
) 3 | } 4 | -------------------------------------------------------------------------------- /test/mocks/babel/no_duplicate_unknown_unformatted.js: -------------------------------------------------------------------------------- 1 | function App() { 2 | render(
) 3 | } 4 | -------------------------------------------------------------------------------- /test/mocks/babel/no_remove_duplicate_formatted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/babel/no_remove_duplicate_formatted.js -------------------------------------------------------------------------------- /test/mocks/babel/no_remove_duplicate_unformatted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/babel/no_remove_duplicate_unformatted.js -------------------------------------------------------------------------------- /test/mocks/babel/remove_duplicate_formatted.js: -------------------------------------------------------------------------------- 1 | function App() { 2 | render(
) 3 | } 4 | -------------------------------------------------------------------------------- /test/mocks/babel/remove_duplicate_unformatted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/babel/remove_duplicate_unformatted.js -------------------------------------------------------------------------------- /test/mocks/css/default_behaviour_formatted.css: -------------------------------------------------------------------------------- 1 | a { 2 | @apply flex items-center justify-between h-16 max-w-6xl mx-auto; 3 | } 4 | -------------------------------------------------------------------------------- /test/mocks/css/default_behaviour_unformatted.css: -------------------------------------------------------------------------------- 1 | a { 2 | @apply mx-auto flex justify-between items-center max-w-6xl h-16; 3 | } 4 | -------------------------------------------------------------------------------- /test/mocks/css/no_duplicate_unknown_formatted.css: -------------------------------------------------------------------------------- 1 | a { 2 | @apply unknown; 3 | } 4 | -------------------------------------------------------------------------------- /test/mocks/css/no_duplicate_unknown_unformatted.css: -------------------------------------------------------------------------------- 1 | a { 2 | @apply unknown; 3 | } 4 | -------------------------------------------------------------------------------- /test/mocks/css/no_remove_duplicate_formatted.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/css/no_remove_duplicate_formatted.css -------------------------------------------------------------------------------- /test/mocks/css/no_remove_duplicate_unformatted.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/css/no_remove_duplicate_unformatted.css -------------------------------------------------------------------------------- /test/mocks/css/remove_duplicate_formatted.css: -------------------------------------------------------------------------------- 1 | a { 2 | @apply dupplicate; 3 | } 4 | -------------------------------------------------------------------------------- /test/mocks/css/remove_duplicate_unformatted.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/css/remove_duplicate_unformatted.css -------------------------------------------------------------------------------- /test/mocks/customRegex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/customRegex.json -------------------------------------------------------------------------------- /test/mocks/flow/default_behaviour_formatted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/flow/default_behaviour_formatted.js -------------------------------------------------------------------------------- /test/mocks/flow/default_behaviour_unformatted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/flow/default_behaviour_unformatted.js -------------------------------------------------------------------------------- /test/mocks/flow/no_duplicate_unknown_formatted.js: -------------------------------------------------------------------------------- 1 | function App() { 2 | render(
) 3 | } 4 | -------------------------------------------------------------------------------- /test/mocks/flow/no_duplicate_unknown_unformatted.js: -------------------------------------------------------------------------------- 1 | function App() { 2 | render(
) 3 | } 4 | -------------------------------------------------------------------------------- /test/mocks/flow/no_remove_duplicate_formatted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/flow/no_remove_duplicate_formatted.js -------------------------------------------------------------------------------- /test/mocks/flow/no_remove_duplicate_unformatted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/flow/no_remove_duplicate_unformatted.js -------------------------------------------------------------------------------- /test/mocks/flow/remove_duplicate_formatted.js: -------------------------------------------------------------------------------- 1 | function App() { 2 | render(
) 3 | } 4 | -------------------------------------------------------------------------------- /test/mocks/flow/remove_duplicate_unformatted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/flow/remove_duplicate_unformatted.js -------------------------------------------------------------------------------- /test/mocks/html/custom_regex_formatted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/html/custom_regex_formatted.html -------------------------------------------------------------------------------- /test/mocks/html/custom_regex_unformatted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/html/custom_regex_unformatted.html -------------------------------------------------------------------------------- /test/mocks/html/default_behaviour_formatted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/html/default_behaviour_formatted.html -------------------------------------------------------------------------------- /test/mocks/html/default_behaviour_unformatted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/html/default_behaviour_unformatted.html -------------------------------------------------------------------------------- /test/mocks/html/no_duplicate_unknown_formatted.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /test/mocks/html/no_duplicate_unknown_unformatted.html: -------------------------------------------------------------------------------- 1 |
2 | -------------------------------------------------------------------------------- /test/mocks/html/no_remove_duplicate_formatted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/html/no_remove_duplicate_formatted.html -------------------------------------------------------------------------------- /test/mocks/html/no_remove_duplicate_unformatted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/html/no_remove_duplicate_unformatted.html -------------------------------------------------------------------------------- /test/mocks/html/remove_duplicate_formatted.html: -------------------------------------------------------------------------------- 1 |

2 | -------------------------------------------------------------------------------- /test/mocks/html/remove_duplicate_unformatted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/html/remove_duplicate_unformatted.html -------------------------------------------------------------------------------- /test/mocks/less/default_behaviour_formatted.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/less/default_behaviour_formatted.less -------------------------------------------------------------------------------- /test/mocks/less/default_behaviour_unformatted.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/less/default_behaviour_unformatted.less -------------------------------------------------------------------------------- /test/mocks/less/no_duplicate_unknown_formatted.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/less/no_duplicate_unknown_formatted.less -------------------------------------------------------------------------------- /test/mocks/less/no_duplicate_unknown_unformatted.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/less/no_duplicate_unknown_unformatted.less -------------------------------------------------------------------------------- /test/mocks/less/no_remove_duplicate_formatted.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/less/no_remove_duplicate_formatted.less -------------------------------------------------------------------------------- /test/mocks/less/no_remove_duplicate_unformatted.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/less/no_remove_duplicate_unformatted.less -------------------------------------------------------------------------------- /test/mocks/less/remove_duplicate_formatted.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/less/remove_duplicate_formatted.less -------------------------------------------------------------------------------- /test/mocks/less/remove_duplicate_unformatted.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/less/remove_duplicate_unformatted.less -------------------------------------------------------------------------------- /test/mocks/regexMalformed.json: -------------------------------------------------------------------------------- 1 | { 2 | "key": "value" 3 | } 4 | -------------------------------------------------------------------------------- /test/mocks/scss/default_behaviour_formatted.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/scss/default_behaviour_formatted.scss -------------------------------------------------------------------------------- /test/mocks/scss/default_behaviour_unformatted.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/scss/default_behaviour_unformatted.scss -------------------------------------------------------------------------------- /test/mocks/scss/no_duplicate_unknown_formatted.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/scss/no_duplicate_unknown_formatted.scss -------------------------------------------------------------------------------- /test/mocks/scss/no_duplicate_unknown_unformatted.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/scss/no_duplicate_unknown_unformatted.scss -------------------------------------------------------------------------------- /test/mocks/scss/no_remove_duplicate_formatted.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/scss/no_remove_duplicate_formatted.scss -------------------------------------------------------------------------------- /test/mocks/scss/no_remove_duplicate_unformatted.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/scss/no_remove_duplicate_unformatted.scss -------------------------------------------------------------------------------- /test/mocks/scss/remove_duplicate_formatted.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/scss/remove_duplicate_formatted.scss -------------------------------------------------------------------------------- /test/mocks/scss/remove_duplicate_unformatted.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/scss/remove_duplicate_unformatted.scss -------------------------------------------------------------------------------- /test/mocks/sorterMalformed.json: -------------------------------------------------------------------------------- 1 | 1234 2 | -------------------------------------------------------------------------------- /test/mocks/typescript/default_behaviour_formatted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/typescript/default_behaviour_formatted.tsx -------------------------------------------------------------------------------- /test/mocks/typescript/default_behaviour_unformatted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/typescript/default_behaviour_unformatted.tsx -------------------------------------------------------------------------------- /test/mocks/typescript/no_duplicate_unknown_formatted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/typescript/no_duplicate_unknown_formatted.tsx -------------------------------------------------------------------------------- /test/mocks/typescript/no_duplicate_unknown_unformatted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/typescript/no_duplicate_unknown_unformatted.tsx -------------------------------------------------------------------------------- /test/mocks/typescript/no_remove_duplicate_formatted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/typescript/no_remove_duplicate_formatted.tsx -------------------------------------------------------------------------------- /test/mocks/typescript/no_remove_duplicate_unformatted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/typescript/no_remove_duplicate_unformatted.tsx -------------------------------------------------------------------------------- /test/mocks/typescript/remove_duplicate_formatted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/typescript/remove_duplicate_formatted.tsx -------------------------------------------------------------------------------- /test/mocks/typescript/remove_duplicate_unformatted.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/typescript/remove_duplicate_unformatted.tsx -------------------------------------------------------------------------------- /test/mocks/vue/default_behaviour_formatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/vue/default_behaviour_formatted.vue -------------------------------------------------------------------------------- /test/mocks/vue/default_behaviour_unformatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/vue/default_behaviour_unformatted.vue -------------------------------------------------------------------------------- /test/mocks/vue/no_duplicate_unknown_formatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/vue/no_duplicate_unknown_formatted.vue -------------------------------------------------------------------------------- /test/mocks/vue/no_duplicate_unknown_unformatted.vue: -------------------------------------------------------------------------------- 1 |

2 | -------------------------------------------------------------------------------- /test/mocks/vue/no_remove_duplicate_formatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/vue/no_remove_duplicate_formatted.vue -------------------------------------------------------------------------------- /test/mocks/vue/no_remove_duplicate_unformatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/vue/no_remove_duplicate_unformatted.vue -------------------------------------------------------------------------------- /test/mocks/vue/remove_duplicate_formatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/vue/remove_duplicate_formatted.vue -------------------------------------------------------------------------------- /test/mocks/vue/remove_duplicate_unformatted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/mocks/vue/remove_duplicate_unformatted.vue -------------------------------------------------------------------------------- /test/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/test/plugin.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcosvega91/prettier-tailwind/HEAD/yarn.lock --------------------------------------------------------------------------------