summaryrefslogtreecommitdiff
path: root/.prettierignore
AgeCommit message (Collapse)Author
2021-08-19LibJS: Allow Unicode escape sequences in identifiersTimothy Flynn
For example, "property.br\u{64}wn" should resolve to "property.brown". To support this behavior, this commit changes the Token class to hold both the evaluated identifier name and a view into the original source for the unevaluated name. There are some contexts in which identifiers are not allowed to contain Unicode escape sequences; for example, export statements of the form "export {} from foo.js" forbid escapes in the identifier "from". The test file is added to .prettierignore because prettier will replace all escaped Unicode sequences with their unescaped value.
2021-06-23LibJS: Correct behaviour of direct vs. indirect evalAnonymous
eval only has direct access to the local scope when accessed through the name eval. This includes locals named eval, because of course it does.
2020-12-27Meta: Add lint-prettier.shLinus Groh
This is a script similar to the clang-format one to ensure prettier formatting of most JavaScript files.
2020-12-27Base+LibJS+LibWeb: Make prettier cleanLinus Groh
Also use "// prettier-ignore" comments where necessary rather than excluding whole files (via .prettierignore).
2020-08-24Meta: Move prettier config files to the root of the repositoryAnotherTest