Skip to content

Commit

Permalink
changed name to poetic (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
arianacosta authored Sep 6, 2019
1 parent 96151c0 commit c87d705
Show file tree
Hide file tree
Showing 7 changed files with 57 additions and 137 deletions.
18 changes: 7 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# js-code-style
# Poetic

Code style guide, linters and formatters for JavaScript, TypeScript and React.
Automatically configure and maintain code style rules with linters and formatters for JavaScript, TypeScript and React.

- Recommended Plugins:
- ESLint
- Prettier
- EditorConfig
### Recommended Visual Studio Code Extensions
- ESLint
- Prettier
- EditorConfig

### ToDo

Expand All @@ -22,8 +23,3 @@ Looking for contributors to:
- Add instructions for contributing (flow)
- Maybe make a cool logo?
- Add configs for webstorm?

js-code
elegantcode
fancycode
poetic
2 changes: 1 addition & 1 deletion boilerplate/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
extends: ["./node_modules/js-code-style/config/eslint/eslint-config.js"],
extends: ["./node_modules/poetic/config/eslint/eslint-config.js"],
// Add custom rules here
rules: {}
};
2 changes: 1 addition & 1 deletion boilerplate/.prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { prettierrc } = require("js-code-style");
const { prettierrc } = require("poetic");

module.exports = {
...prettierrc
Expand Down
2 changes: 1 addition & 1 deletion boilerplate/package.sample.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"devDependencies": {
"js-code-style": "../js-code-style"
"poetic": "../poetic"
},
"scripts": {
"code:clean": "yarn code:lint && yarn code:format",
Expand Down
2 changes: 1 addition & 1 deletion boilerplate/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
// Base code style rules
"extends": "./node_modules/js-code-style/config/typescript/tsconfig",
"extends": "./node_modules/poetic/config/typescript/tsconfig",
// Add your custom configuration overrides after this
"target": "es5",
"include": ["src/**/*"],
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "js-code-style",
"name": "poetic",
"version": "0.0.1",
"description": "Code style guide, linters and formatters for JavaScript, TypeScript and React.",
"description": "Automatically install and maintain code style with linters and formatters for JavaScript, TypeScript and React.",
"main": "config/index.js",
"bin": "bin/install-boilerplate.js",
"repository": "[email protected]:arianacosta/js-code-style.git",
"homepage": "https://github.com/arianacosta/js-code-style",
"repository": "[email protected]:arianacosta/poetic.git",
"homepage": "https://github.com/arianacosta/poetic",
"license": "MIT",
"scripts": {
"project:upgrade:dependencies": "yarn upgrade-interactive --latest"
Expand Down
Loading

0 comments on commit c87d705

Please sign in to comment.