Skip to content

Commit 5ab7d64

Browse files
committed
adding build tooling from the markdown-it series: this way we can use ES6 code easily and have microbundle (i.e. rollup under the hood) transpile our code to old ES5 and automatically dead-code-remove the DEBUG code in lib/index.js.
1 parent b2163cf commit 5ab7d64

11 files changed

+7287
-566
lines changed

.eslintignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
coverage/
2+
dist/
3+
node_modules

.eslintrc.yml

+154
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,154 @@
1+
env:
2+
node: true
3+
browser: false
4+
es6: true
5+
6+
extends: eslint:recommended
7+
8+
parserOptions:
9+
ecmaVersion: 2020
10+
sourceType: module
11+
12+
rules:
13+
accessor-pairs: 2
14+
array-bracket-spacing: [ 2, "always", { "singleValue": true, "objectsInArrays": true, "arraysInArrays": true } ]
15+
block-scoped-var: 1
16+
block-spacing: 2
17+
brace-style: [ 1, '1tbs', { allowSingleLine: true } ]
18+
# Postponed
19+
#callback-return: 2
20+
comma-dangle: 2
21+
comma-spacing: 2
22+
comma-style: 2
23+
computed-property-spacing: [ 2, never ]
24+
consistent-this: [ 1, self ]
25+
consistent-return: 2
26+
# ? change to multi
27+
curly: [ 2, 'multi-line' ]
28+
dot-notation: 2
29+
eol-last: 2
30+
eqeqeq: [ 2, always, { "null": "ignore" } ]
31+
func-style: [ 1, declaration, { "allowArrowFunctions": true } ]
32+
# Postponed
33+
#global-require: 2
34+
guard-for-in: 1
35+
handle-callback-err: 2
36+
37+
indent: [ 1, 2, { VariableDeclarator: { var: 2, let: 2, const: 3 }, SwitchCase: 0, MemberExpression: "off", ignoreComments: true } ]
38+
39+
# key-spacing: [ 2, { "align": "value" } ]
40+
keyword-spacing: 2
41+
linebreak-style: 2
42+
max-depth: [ 1, 6 ]
43+
max-nested-callbacks: [ 1, 4 ]
44+
# string can exceed 80 chars, but should not overflow github website :)
45+
max-len: [ 1, 140, 1000 ]
46+
new-cap: 1
47+
new-parens: 2
48+
# Postponed
49+
#newline-after-var: 2
50+
no-alert: 2
51+
no-array-constructor: 2
52+
no-bitwise: 2
53+
no-caller: 2
54+
no-case-declarations: 1
55+
no-catch-shadow: 2
56+
no-cond-assign: 2
57+
no-console: 1
58+
no-constant-condition: 2
59+
no-control-regex: 1
60+
no-debugger: 1
61+
no-delete-var: 2
62+
no-div-regex: 2
63+
no-dupe-args: 2
64+
no-dupe-keys: 2
65+
no-duplicate-case: 2
66+
no-else-return: 2
67+
# Tend to drop
68+
# no-empty: 1
69+
no-empty-character-class: 2
70+
no-empty-pattern: 2
71+
no-eq-null: 1
72+
no-eval: 2
73+
no-ex-assign: 2
74+
no-extend-native: 2
75+
no-extra-bind: 2
76+
no-extra-boolean-cast: 2
77+
no-extra-semi: 2
78+
no-fallthrough: 2
79+
no-floating-decimal: 2
80+
no-func-assign: 2
81+
# Postponed
82+
#no-implicit-coercion: [2, { "boolean": true, "number": true, "string": true } ]
83+
no-implied-eval: 2
84+
no-inner-declarations: 2
85+
no-invalid-regexp: 2
86+
no-irregular-whitespace: 2
87+
no-iterator: 2
88+
no-label-var: 2
89+
no-labels: 2
90+
no-lone-blocks: 2
91+
no-lonely-if: 1
92+
no-loop-func: 2
93+
no-mixed-requires: 2
94+
no-mixed-spaces-and-tabs: 1
95+
no-multi-str: 1
96+
# Postponed
97+
#no-native-reassign: 2
98+
no-negated-in-lhs: 2
99+
# Postponed
100+
#no-nested-ternary: 2
101+
no-new: 2
102+
no-new-func: 2
103+
no-new-object: 2
104+
no-new-require: 2
105+
no-new-wrappers: 2
106+
no-obj-calls: 2
107+
no-octal: 2
108+
no-octal-escape: 2
109+
no-path-concat: 2
110+
no-proto: 2
111+
no-prototype-builtins: 1
112+
no-redeclare: 2
113+
# Postponed
114+
#no-regex-spaces: 2
115+
no-return-assign: 2
116+
no-script-url: 2
117+
no-self-compare: 2
118+
no-sequences: 2
119+
no-shadow: 1
120+
no-shadow-restricted-names: 2
121+
no-sparse-arrays: 2
122+
no-trailing-spaces: 1
123+
no-undef: 1
124+
no-undef-init: 2
125+
no-undefined: 1
126+
no-unexpected-multiline: 2
127+
no-unreachable: 2
128+
no-unused-expressions: 2
129+
no-unused-vars: 1
130+
no-use-before-define: 1
131+
no-useless-escape: 1
132+
no-var: 1
133+
no-void: 2
134+
no-with: 2
135+
object-curly-spacing: [ 2, always, { "objectsInObjects": true, "arraysInObjects": true } ]
136+
operator-assignment: 1
137+
# Postponed
138+
#operator-linebreak: [ 2, after ]
139+
semi: [ 2, always ]
140+
semi-spacing: 2
141+
space-before-blocks: 2
142+
space-before-function-paren: [ 1, { "anonymous": "always", "named": "never" } ]
143+
space-in-parens: [ 2, never ]
144+
space-infix-ops: 2
145+
space-unary-ops: 2
146+
# Postponed
147+
#spaced-comment: [ 1, always, { exceptions: [ '/', '=' ] } ]
148+
strict: [ 1, global ]
149+
quotes: [ 1, single, avoid-escape ]
150+
quote-props: [ 1, 'as-needed', { "keywords": true } ]
151+
radix: 2
152+
use-isnan: 2
153+
valid-typeof: 2
154+
yoda: [ 2, never, { "exceptRange": true } ]

.gitignore

+145-16
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,156 @@
1-
# This is a comment in a .gitignore file!
2-
/node_modules
3-
*.log
41

5-
# Ignore this nonexistent file
6-
/nonexistent
2+
# Created by https://www.gitignore.io/api/node,linux,visualstudiocode
3+
# Then hand-patched to suit us.
74

8-
# Do not ignore this file
9-
!/nonexistent/foo
5+
# OS X crap
6+
.DS_Store*
7+
Icon?
8+
._*
109

11-
# Ignore some files
10+
# Windows
11+
Thumbs.db
12+
ehthumbs.db
13+
Desktop.ini
1214

13-
/baz
15+
### Linux ###
16+
*~
1417

15-
/foo/*.wat
18+
# Archives
19+
*.gz
20+
*.zip
21+
*.rar
22+
*.7z
1623

17-
# Ignore some deep sub folders
18-
/othernonexistent/**/what
24+
# KDE directory preferences
25+
.directory
1926

20-
# Ignore deep folders with more than one wildcard
21-
*/**/__MACOSX/**/*
27+
# Linux trash folder which might appear on any partition or disk
28+
.Trash-*
2229

23-
# Unignore some other sub folders
24-
!/othernonexistent/**/what/foo
30+
# .nfs files are created when an open file is removed but is still being accessed
31+
.nfs*
2532

33+
# Private files
34+
_private
2635

36+
# Vim
2737
*.swp
38+
*.swo
39+
40+
# Logs
41+
logs
42+
*.log
43+
npm-debug.log*
44+
yarn-debug.log*
45+
yarn-error.log*
46+
lerna-debug.log*
47+
48+
# Diagnostic reports (https://nodejs.org/api/report.html)
49+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
50+
51+
# Runtime data
52+
pids
53+
*.pid
54+
*.seed
55+
*.pid.lock
56+
57+
# Directory for instrumented libs generated by jscoverage/JSCover
58+
lib-cov
59+
60+
# Coverage directory used by tools like istanbul
61+
coverage
62+
*.lcov
63+
64+
# nyc test coverage
65+
.nyc_output
66+
67+
# Profiling output (old and new (Chrome DevTools) style:
68+
*.cpuprofile
69+
*.log
70+
71+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
72+
.grunt
73+
74+
# Bower dependency directory (https://bower.io/)
75+
bower_components
76+
77+
# node-waf configuration
78+
.lock-wscript
79+
80+
# Compiled binary addons (https://nodejs.org/api/addons.html)
81+
build/Release
82+
83+
# Dependency directories
84+
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
85+
node_modules/
86+
jspm_packages/
87+
88+
# TypeScript v1 declaration files
89+
typings/
90+
91+
# TypeScript cache
92+
*.tsbuildinfo
93+
94+
# Optional npm cache directory
95+
.npm
96+
97+
# Optional eslint cache
98+
.eslintcache
99+
100+
# Microbundle cache
101+
.rpt2_cache/
102+
.rts2_cache_cjs/
103+
.rts2_cache_es/
104+
.rts2_cache_umd/
105+
106+
# Optional REPL history
107+
.node_repl_history
108+
109+
# Output of 'npm pack'
110+
*.tgz
111+
112+
# Yarn Integrity file
113+
.yarn-integrity
114+
115+
# dotenv environment variables file
116+
.env
117+
.env.test
118+
119+
# parcel-bundler cache (https://parceljs.org/)
120+
.cache
121+
122+
# Next.js build output
123+
.next
124+
125+
# Nuxt.js build / generate output
126+
.nuxt
127+
128+
# Gatsby files
129+
.cache/
130+
# Comment in the public line in if your project uses Gatsby and *not* Next.js
131+
# https://nextjs.org/blog/next-9-1#public-directory-support
132+
# public
133+
134+
# vuepress build output
135+
.vuepress/dist
136+
137+
# Serverless directories
138+
.serverless/
139+
140+
# FuseBox cache
141+
.fusebox/
142+
143+
# DynamoDB Local files
144+
.dynamodb/
145+
146+
# TernJS port file
147+
.tern-port
148+
149+
### VisualStudioCode ###
150+
#.vscode/*
151+
#!.vscode/settings.json
152+
#!.vscode/tasks.json
153+
#!.vscode/launch.json
154+
#!.vscode/extensions.json
155+
.vscode
156+

.npmignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/.github
2+
support/
3+
.nyc_output
4+
coverage/
5+
Makefile
6+
.*

.prettierrc.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
semi: true
2+
singleQuote: true
3+
trailingComma: all

0 commit comments

Comments
 (0)