Skip to content

Commit

Permalink
feat: support tabs (#23)
Browse files Browse the repository at this point in the history
* chore: bump up package-lock.json

* feat: support tabs. escape/unescape \t and \n

* refactor: carve out escaping bracket logic to a function

* chore(eslint): disable no-template-curly-in-string

* style: prettier

* build: add package-lock.json to bumpFiles

* feat: revert textarea to input

* feat: add margin to the heading

* deps: install and setup jest

* test: add tests for util

* feat: add description about \n and \t
  • Loading branch information
zaki-yama committed Feb 6, 2020
1 parent 3ce3487 commit 890e259
Show file tree
Hide file tree
Showing 9 changed files with 10,123 additions and 6,153 deletions.
9 changes: 6 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
module.exports = {
extends: "@cybozu/eslint-config/presets/react-typescript-prettier",
settings: {
"react": {
"version": "detect"
react: {
version: "detect"
}
},
rules: {
"no-template-curly-in-string": 0
}
}
};
4 changes: 4 additions & 0 deletions .versionrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ module.exports = {
{
filename: "dist/manifest.json",
type: "json"
},
{
filename: "package-lock.json",
type: "json"
}
]
};
3 changes: 3 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
preset: "ts-jest"
};

0 comments on commit 890e259

Please sign in to comment.