Curly

ESLint 使用方法

折月煮酒 提交于 2021-01-27 05:16:43
一、全局安装 npm install -g eslint 二、生成配置文件   在项目根目录执行init,生成.eslintrc文件。在init时,要求根目录存在package.json。当然也可以直接复制个现成的.eslintrc.js文件。 eslint --init 三、自定义配置项   根据 规则文档 ,编辑.eslintrc.js文件内容。 module.exports = { "env": { "node": true }, "rules": { // 强制使用一致的缩进 "indent": ["warn", "tab"], // 禁止空格和 tab 的混合缩进 "no-mixed-spaces-and-tabs":1, // 禁用 debugger "no-debugger": 1, // 禁止不必要的布尔转换 "no-extra-boolean-cast": 1, // 强制所有控制语句使用一致的括号风格 "curly": 1, // 禁止使用多个空格 "no-multi-spaces": 1, // 要求在函数标识符和其调用之间有空格 "func-call-spacing": 1, // 强制在函数括号内使用一致的换行 "function-paren-newline": ["warn", "never"], // 强制隐式返回的箭头函数体的位置 "implicit

转义字符

霸气de小男生 提交于 2021-01-13 03:46:57
一、符号转义 二、 字母转义 三、数字转义 四、特殊字符转义 符号转义: — 制表符Horizontal tab — 换行Line feed — 回车Carriage Return — Space ! — 惊叹号Exclamation mark " — &quot; 双引号Quotation mark # — 数字标志Number sign $ — 美元标志Dollar sign % — 百分号Percent sign & — &amp; Ampersand ‘ — 单引号Apostrophe ( — 小括号左边部分Left parenthesis ) — 小括号右边部分Right parenthesis * — 星号Asterisk + — 加号Plus sign , — 逗号Comma - — 连字号Hyphen . — 句号Period (fullstop) / — 斜杠Solidus (slash) : — 冒号Colon ; — 分号Semicolon < — &lt; 小于号Less than = — 等于符号Equals sign > —&gt; 大于号Greater than ? — 问号Question mark @ — Commercial at [ --- 中括号左边部分Left square bracket \ --- 反斜杠Reverse solidus

python练习题-day2

て烟熏妆下的殇ゞ 提交于 2021-01-13 00:43:07
1、判断下列逻辑语句的True,False 1)1 > 1 or 3 < 4 or 4 > 5 and 2 > 1 and 9 > 8 or 7 < 6   True 2)not 2 > 1 and 3 < 4 or 4 > 5 and 2 > 1 and 9 > 8 or 7 < 6   False 2、求出下列逻辑语句的值 1) 8 or 3 and 4 or 2 and 0 or 9 and 7   8 2) 0 or 2 and 3 and 4 or 6 and 0 or 3   4 3、下列结果是什么? 1) 6 or 2 > 1   6 2) 3 or 2 > 1   3 3) 0 or 5 < 4   False 4) 5 < 4 or 3    3 5) 2 > 1 or 6   True 6) 3 and 2 > 1   True 7) 0 and 3 > 1   0 8) 2 > 1 and 3   3 9) 3 > 1 and 0   0 10) 3 > 1 and 2 or 2 < 3 and 3 and 4 or 3 > 2   2 4、简述变量命名规范 使用字符数字和下划线随意组成的 不能使用python中的关键字 不能使用数字或数字开头的 不能太长 不能使用中文 不能毫无意义 推荐使用:小驼峰体.下划线 注意区分大小写 5、name = input(“

Eslint规则说明

独自空忆成欢 提交于 2020-11-21 06:30:17
" no-alert " : 0 , // 禁止使用alert confirm prompt " no-array-constructor " : 2 , // 禁止使用数组构造器 " no-bitwise " : 0 , // 禁止使用按位运算符 " no-caller " : 1 , // 禁止使用arguments.caller或arguments.callee " no-catch-shadow " : 2 , // 禁止catch子句参数与外部作用域变量同名 " no-class-assign " : 2 , // 禁止给类赋值 " no-cond-assign " : 2 , // 禁止在条件表达式中使用赋值语句 " no-console " : 2 , // 禁止使用console " no-const-assign " : 2 , // 禁止修改const声明的变量 " no-constant-condition " : 2 , // 禁止在条件中使用常量表达式 if(true) if(1) " no-continue " : 0 , // 禁止使用continue " no-control-regex " : 2 , // 禁止在正则表达式中使用控制字符 " no-debugger " : 2 , // 禁止使用debugger " no-delete-var "

Tab键== 4个空格并在Vim中的花括号后自动缩进

本小妞迷上赌 提交于 2020-08-15 08:41:26
问题: How do I make vi - Vim never use tabs (converting spaces to tabs, bad!), makes the tab key == 4 spaces, and automatically indent code after curly brace blocks like Emacs does? 我如何制作 vi - Vim 从不使用制表符(将空格转换为制表符,不好!),制作Tab键== 4个空格,并在像 Emacs 这样的大括号块之后自动缩进代码? Also, how do I save these settings so I never have to input them again? 另外,如何保存这些设置,以便我再也不必输入它们? I've seen other questions related to this, but it always seems to be a little off from what I want. 我已经看到了与此相关的其他问题,但它似乎总是与我想要的有点不同。 解决方案: 参考一: https://stackoom.com/question/z1I/Tab键-个空格并在Vim中的花括号后自动缩进 参考二: https://oldbug.net/q/z1I/Tab-key-4

如何使用双括号或单括号,括号,花括号

和自甴很熟 提交于 2020-08-15 03:52:38
问题: I am confused by the usage of brackets, parentheses, curly braces in Bash, as well as the difference between their double or single forms. 我对Bash中括号,括号,花括号的使用以及它们的双精度或单精度之间的区别感到困惑。 Is there a clear explanation? 有明确的解释吗? 解决方案: 参考一: https://stackoom.com/question/9BFX/如何使用双括号或单括号-括号-花括号 参考二: https://oldbug.net/q/9BFX/How-to-use-double-or-single-brackets-parentheses-curly-braces 来源: oschina 链接: https://my.oschina.net/u/4438370/blog/4358038

如何在.NET中以格式字符串转义大括号(大括号)

醉酒当歌 提交于 2020-08-08 17:54:39
问题: How can brackets be escaped in using string.Format . 如何使用 string.Format 逃脱括号。 For example: 例如: String val = "1,2,3" String.Format(" foo {{0}}", val); This example doesn't throw an exception, but outputs the string foo {0} 本示例不会引发异常,但会输出字符串 foo {0} Is there a way to escape the brackets? 有没有办法逃脱括号? 解决方案: 参考一: https://stackoom.com/question/Nla/如何在-NET中以格式字符串转义大括号-大括号 参考二: https://oldbug.net/q/Nla/How-to-escape-braces-curly-brackets-in-a-format-string-in-NET 来源: oschina 链接: https://my.oschina.net/u/3797416/blog/4317134

vue开发之代码规范eslint

感情迁移 提交于 2020-05-08 18:49:32
ESLint  不管是多人合作还是个人项目,代码规范都是很重要的。这样做不仅可以很大程度地避免基本语法错误,也保证了代码的可读性。 准备工作 一、VSCode ESLint插件 ESLint插件用于根据工程目录的.eslintrc.js配置文件在编辑器中显示一些错误提示。 二、基于vue-cli创建项目 具体步骤如下: 创建项目 创建的时候把Linter/Formatter选上(默认已选上) 下一步选择ESLint with error prevention only 下一步选择Lint on save (在编辑保存之后根据对代码格式进行检测) 下一步选择In dedicated config files(将eslint的配置抽离到独立的文件中) 剩下的步骤默认下一步,即可完成项目的创建 配置项 所有的配置文件都在 .eslintrc.js 中,默认情况下使用了plugin:vue/essential来校验代码,当然,你也可以选择最严格的plugin:vue/recommended来校验代码。 module . exports = { extends : [ 'plugin:vue/recommended' , 'eslint:recommended' ] //你可以修改为 extends: ['plugin:vue/essential', 'eslint:recommended'

English trip V1

自闭症网瘾萝莉.ら 提交于 2020-05-05 13:07:54
In this lesson you will learn to describe a person. 课上内容(Lesson) appearance -> ap pea ran ce 外貌 How to describe a person? < character -> ch a rac ter ['k æ rɪktɚ] 性格 appearance: face: 方脸 square face 圆脸 round face 瓜子脸 oval face body: short 矮的 medium 中等 tall 高的 fat (肥)or over weight(过重,肥胖) # 使用fat不是特别的 polite(礼貌) thin 瘦的 slim 苗条的 hair: wavy hair 卷发;波浪发 curly hair 卷发,卷发型;自然卷发 straight hair 直发 short hair 短发 相关 Adjective -> A d jec ti ve # d 没有发音 Nice 和蔼的 Beautiful 美丽的 lovely 可爱的 handsome (男子)英俊的;可观的;大方的,慷慨的;健美而端庄的 # han d some 这里的 d 没有发音 friendly .友好的;亲切的;支持的;融洽的,和睦的 sunshiny 晴朗的;阳光照耀的;向阳极好的

Google's R Style Guide【转】

我的梦境 提交于 2020-04-28 18:51:45
Google's R Style Guide R is a high-level programming language used primarily for statistical computing and graphics. The goal of the R Programming Style Guide is to make our R code easier to read, share, and verify. The rules below were designed in collaboration with the entire R user community at Google. Summary: R Style Rules File Names : end in .R Identifiers : variable.name , FunctionName , kConstantName Line Length : maximum 80 characters Indentation : two spaces, no tabs Spacing Curly Braces : first on same line, last on own line Assignment : use <- , not = Semicolons : don't use them