summaryrefslogtreecommitdiff
path: root/@linaria/packages/stylelint/src/index.ts
diff options
context:
space:
mode:
Diffstat (limited to '@linaria/packages/stylelint/src/index.ts')
-rw-r--r--@linaria/packages/stylelint/src/index.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/@linaria/packages/stylelint/src/index.ts b/@linaria/packages/stylelint/src/index.ts
new file mode 100644
index 0000000..1794dcb
--- /dev/null
+++ b/@linaria/packages/stylelint/src/index.ts
@@ -0,0 +1,12 @@
+export default {
+ processors: [require.resolve('./preprocessor')],
+ syntax: 'scss',
+ rules: {
+ 'property-no-vendor-prefix': true,
+ 'string-no-newline': true,
+ 'value-no-vendor-prefix': true,
+ 'no-empty-source': null,
+ 'no-extra-semicolons': null,
+ 'no-missing-end-of-source-newline': null,
+ },
+};