這篇文章帶給大家的內容是關於js程式碼風格是怎麼樣的? JavaScript程式碼風格的介紹,有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
為了約定大家的程式碼風格,在社群中誕生了一些比較規範的程式碼風格規格:
JavaScript Standard Style
Airbnb JavaScript Style
ESLint 只是提供了工具和規則,如何設定這些規則完全取決於使用者。這裡使用 Airbnb 配置來說明。
$ npm info "eslint-config-airbnb@latest" peerDependencies { eslint: '^4.19.1', 'eslint-plugin-import': '^2.12.0', 'eslint-plugin-jsx-a11y': '^6.0.3', 'eslint-plugin-react': '^7.9.1' } $ npx -v6.1.0$ npx install-peerdeps --dev eslint-config-airbnb+ eslint-config-airbnb@17.0.0+ eslint-plugin-jsx-a11y@6.1.1+ eslint-plugin-react@7.10.0+ eslint-plugin-import@2.13.0+ eslint@4.19.1SUCCESS eslint-config-airbnb and its peerDeps were installed successfully.
# 创建 package.json$ npm init -y $ eslint --init? How would you like to configure ESLint? Answer questions about your style ❯ Use a popular style guide Inspect your JavaScript file(s) ? Which style guide do you want to follow? Google ❯ Airbnb Standard ? Do you use React? No ? What format do you want your config file to be in? JSON + eslint-plugin-import@2.13.0+ eslint-config-airbnb-base@13.0.0
最後產生.eslint.json
檔案:
{ "extends": "airbnb-base"}
$ ./node_modules/.bin/eslint -v v4.19.1$ ./node_modules/.bin/eslint ./blog//Users/forwardNow/develop/work/study/blog/2018/08/test.js 35:1 warning Unexpected console statement no-console✖ 1 problem (0 errors, 1 warning)
"scripts": { "eslint": "./node_modules/.bin/eslint ./src/"},
搜尋並安裝eslint 外掛程式
設定User Settings:
"editor.detectIndentation": false,"editor.tabSize": 2,"eslint.autoFixOnSave": true,
##
以上是js程式碼風格是怎樣的? JavaScript程式碼風格的介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!