We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6e08da commit ec03956Copy full SHA for ec03956
.eslintrc
@@ -6,8 +6,12 @@
6
"node": true,
7
"mocha": true
8
},
9
- "ecmaFeatures": {
10
- "jsx": true
+ "parserOptions": {
+ "ecmaVersion": 6,
11
+ "sourceType": "module",
12
+ "ecmaFeatures": {
13
+ "jsx": true
14
+ },
15
16
"plugins": [
17
"react"
Makefile
@@ -23,6 +23,10 @@ extract-styles:
23
@echo "\nExtracting Stilr StyleSheet..."
24
@node -p "var s = require('stilr'); var b = require('./dist'); s.render({}, b.stylesheet)" > ./styles.css
25
26
+lint:
27
+ @echo "\nLinting source files..."
28
+ @$(BIN)/eslint lib/
29
+
30
test:
31
@echo "\nTesting source files, hang on..."
32
@NODE_ENV=test $(BIN)/mocha \
0 commit comments