Generalize CONTRIBUTING

This commit is contained in:
Angelos Chalaris
2023-05-01 22:33:47 +03:00
parent 62ae1684a1
commit fc4e61e6fa

View File

@ -40,11 +40,3 @@ In order to create a new snippet, you should follow the steps below:
- Always use soft tabs (2 spaces), never hard tabs.
- Leave a single space after a comma (`,`) character (both in the description and code).
- Define multiple variables on the same line, if possible. Use meaningful names (e.g. `letter` instead of `lt`) and follow existing conventions as seen in other snippets. Do not use trailing or leading underscores in variable names.
- Use ES6 notation to define your snippet's function. For example `const myFunction = ( arg1, arg2 ) => { }`. Format your code based on [Semi-Standard Style](https://github.com/Flet/semistandard)'s format guidelines.
- Always use single quotes for string literals. Use template literals, instead, if necessary.
- Use strict equality checking (`===` and `!==` instead of `==` and `!=`).
- When describing snippets, refer to methods, using their full name. For example, use `Array.prototype.reduce()`, instead of `reduce()`.
- Do not include arguments in method references. For example, use `String.prototype.split()` instead of `String.prototype.split('\n')`.
- When referring to constructors, use the prototype's name. For example, use `Array` instead of `new Array()`.
- Use variables only when necessary. Prefer `const` when the values are not altered after assignment, otherwise, use `let`. Do not use `var`.
- Never use `eval()`. Your snippet will be disqualified immediately.