Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.1.0 #66

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
dist/**/*
node_modules/**/*
**/dist/**
**/node_modules/**
80 changes: 48 additions & 32 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,34 +1,50 @@
module.exports = {
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:prettier/recommended",
"prettier/react"
parser: '@typescript-eslint/parser',
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:@typescript-eslint/recommended',
],
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
ecmaFeatures: { jsx: true },
},
env: {
es6: true,
node: true,
},
rules: {
'quotes': ['error', 'single'],
'comma-dangle': ['error', 'always-multiline'],
'eol-last': ['error', 'always'],
'prefer-template': 'error',
'object-curly-spacing': ['error', 'always'],
'comma-spacing': ['error'],
'no-multi-spaces': ['error'],
'no-unexpected-multiline': ['error'],
'object-curly-newline': ['error', { multiline: true }],
'array-bracket-newline': ['error', { multiline: true }],
'function-paren-newline': ['error', 'multiline'],
'no-trailing-spaces': 'error',
'react/prop-types': ['off'],
'react/function-component-definition': [
'error', {
'namedComponents': 'arrow-function',
'unnamedComponents': 'arrow-function',
},
],
"plugins": ["react", "prettier"],
"settings": {
"react": {
"version": "15.0",
}
},
"env": {
"browser": true,
"es6": true
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
"prettier/prettier": ["error", {
singleQuote: true,
trailingComma: 'all',
// "bracketSpacing": false,
// "jsxBracketSameLine": true,
}],
"no-unused-vars": "warn",
}
};
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/member-delimiter-style': ['error'],
'@typescript-eslint/type-annotation-spacing': ['error'],

'indent': 'off',
'@typescript-eslint/indent': ['error', 2],
'semi': 'off',
'@typescript-eslint/semi': ['error'],
'no-empty-function': 'off',
'@typescript-eslint/no-empty-function': ['off'],
'@typescript-eslint/no-explicit-any': ['off'],
},
settings: { react: { 'version': 'latest' } },
};
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,5 @@ styleguide/build/
styleguide/index.html

# editor
.vscode
.vscode
.docz
1 change: 1 addition & 0 deletions .husky/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_
23 changes: 0 additions & 23 deletions .travis.yml

This file was deleted.

21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

32 changes: 1 addition & 31 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,31 +1 @@
> 이 라이브러리는 지속적으로 작업이 진행중입니다. 0.1.0 을 올리기 전까지 api는 변경될 수 있습니다.
> 홈페이지가 개편 되었습니다. Naver Maps를 라이브로 테스트 해 볼 수 있습니다.


# react-naver-maps
Controlled React Component for Naver Maps to handle zoom, center, etc.

## Install

``` bash
npm install react-naver-maps
# or
yarn add react-naver-maps
```

## Documentation

- [Introduction](https://zeakd.github.io/react-naver-maps/#/React%20Naver%20Maps?id=introduction)
- [Getting Started](https://zeakd.github.io/react-naver-maps/#/React%20Naver%20Maps?id=getting-started)
- [API Docs](https://zeakd.github.io/react-naver-maps)

## [Example Projects](./examples)

## Contribute

이 슈 환 영

피 알 환 영



# React Naver Maps
15 changes: 0 additions & 15 deletions babel.config.js

This file was deleted.

24 changes: 0 additions & 24 deletions docs/examples/1-map-simple.md

This file was deleted.

171 changes: 0 additions & 171 deletions docs/examples/2-map-options.md

This file was deleted.

Loading