Skip to content

Commit 6093851

Browse files
feat: promote the markdown engine into a dedicated repo (#12)
Co-authored-by: Rafe Goldberg <[email protected]>
1 parent fc15d95 commit 6093851

1,318 files changed

Lines changed: 17048 additions & 235534 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.babelrc

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
{
22
"presets": [
3-
["@babel/preset-env", {
4-
"targets": {
5-
"browsers": ["last 2 versions"]
3+
[
4+
"@babel/preset-env",
5+
{
6+
"targets": {
7+
"browsers": ["last 2 versions"]
8+
}
69
}
7-
}],
10+
],
811
"@babel/preset-react"
912
],
10-
"plugins": ["@babel/plugin-proposal-class-properties"]
13+
"plugins": [
14+
"@babel/plugin-proposal-class-properties",
15+
"@babel/plugin-proposal-object-rest-spread",
16+
"@babel/plugin-proposal-optional-chaining"
17+
]
1118
}

.commitlintrc.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
const [,,typeEnum] = require('@commitlint/config-angular').rules['type-enum'];
2+
3+
module.exports = {
4+
extends: ['@commitlint/config-angular'],
5+
rules: {
6+
'header-max-length': [0, 'always', 106],
7+
'type-enum': [2, 'always', [...typeEnum, 'chore', 'ref', 'add', 'enhance']],
8+
'type-case': [1, 'always', ['lower-case', 'upper-case']],
9+
'body-max-line-length': [0, 'always', 'Infinity'],
10+
},
11+
};

.eslintignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
**/node_modules
22
coverage
3-
example/dist
4-
example/demo-bundle.*
5-
example/reference-bundle.*
3+
dist

.eslintrc

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
{
2-
"parser": "babel-eslint",
32
"extends": [
43
"@readme/eslint-config",
54
"@readme/eslint-config/react"
65
],
7-
"rules": {
8-
"no-underscore-dangle": ["error", {
9-
"allow": ["_cache", "_id", "_key"]
10-
}]
11-
}
6+
"parser": "babel-eslint",
7+
"root": true
128
}

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
## 🧰 What's being changed?
1+
<img height=20 src=https://readme.com/static/favicon.ico align=center> [Demo][demo] | 🎫 [Ticket][ticket]
2+
:---:|:---:
23

3-
Describe in detail what this PR is for.
4+
### 🧰 Changes
45

5-
## 🧪 Testing
6+
***DESCRIBE YOUR CHANGES***.
67

7-
Provide as much information as you can on how to test what you've done.
8+
9+
[demo]: #demo-app-link-to-come
10+
[ticket]: #ticket-link-to-come

.github/codeql/config.yml

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/dependabot.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ updates:
66
interval: monthly
77
reviewers:
88
- erunion
9+
- rafegoldberg
910
labels:
1011
- scope:dependency
1112
commit-message:
@@ -19,6 +20,7 @@ updates:
1920
open-pull-requests-limit: 10
2021
reviewers:
2122
- erunion
23+
- rafegoldberg
2224
labels:
2325
- scope:dependency
2426
commit-message:

.github/workflows/bundlewatch.yml

Lines changed: 0 additions & 22 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@ jobs:
2020
node-version: ${{ matrix.node-version }}
2121

2222
- name: Install dependencies
23-
run: |
24-
npm ci
25-
npx lerna bootstrap --concurrency 2
23+
run: npm ci
2624

2725
- name: Run tests
2826
run: npm test

.github/workflows/codeql-analysis.yml

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)